Nothing
# extract DB credentials from unversioned credential files
#
credentials <- function(file) {
if (file.exists(file)) {
credentials_temp <- utils::read.table(file, header = FALSE, sep = ";",
stringsAsFactors = FALSE)
} else {
if (file.exists(basename(file))) {
credentials_temp <- utils::read.table(file = basename(file),
header = FALSE, sep = ";",
stringsAsFactors = FALSE)
} else {
stop("'file' could not be found")
}
}
credentials <- credentials_temp$V2
names(credentials) <- credentials_temp$V1
return(credentials)
}
# cap-function
# http://stat.ethz.ch/R-manual/R-devel/library/base/html/chartr.html
#
simpleCap <- function(x) {
s <- unlist(strsplit(tolower(x), " "))
t <- paste(toupper(substring(s, 1, 1)), substring(s, 2),
sep = "", collapse = " ")
u <- unlist(strsplit(t, "-"))
paste(toupper(substring(u, 1, 1)), substring(u, 2),
sep = "", collapse = "-")
}
# readzrx
# - import zrx files as df
readzrx <- function(x) {
# determine number of columns
header <- readLines(x, 10)
n_head <- length(which(startsWith(header, "#")))
header <- header[startsWith(header, "#")]
layout <- header[length(header)]
columns <- unlist(strsplit(layout, split = "(",
fixed = TRUE))[2]
columns <- unlist(strsplit(columns, split = ")", fixed = TRUE))[1]
columns <- unlist(strsplit(columns, split = ",", fixed = TRUE))
columns <- columns[columns != "status"]
col_names <- append(columns, "rem")
col_classes <- append(c("character", "numeric"),
rep("character", length(col_names) - 2))
# read zrx into data.frame
df <- read.table(file = x, col.names = col_names, colClasses = col_classes,
skip = n_head, comment.char = "#", sep=" ", fill = TRUE,
blank.lines.skip = TRUE, header = FALSE)
df <- df[, c("timestamp", "value")]
# remove all rows with NA values (-777)
id_na <- which(df$value == -777)
if(length(id_na) > 0){
df <- df[-id_na,]
}
# restructure df
df_db <- data.frame(
date = as.Date(strptime(df$timestamp, format = "%Y%m%d%H%M%S")),
w = df$value,
year = format(strptime(df$timestamp, format = "%Y%m%d%H%M%S"),
format = "%Y"),
month = format(strptime(df$timestamp, format = "%Y%m%d%H%M%S"),
format = "%m"),
day = format(strptime(df$timestamp, format = "%Y%m%d%H%M%S"),
format = "%d"))
return(df_db)
}
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.