Nothing
## This code writes all the variables.
##
## Enio Gjerga, 2020
write_generals <- function(variables=variables, oF=oF){
## generals <- c()
##
## for(i in seq_len(length(variables))){
##
## generals <- c(generals,
## paste0("\t",
## variables[[i]]$variables[variables[[i]]$idxNodes]))
## generals <- c(generals,
## paste0("\t",
## variables[[i]]$variables[variables[[i]]$idxB]))
## generals <- c(generals,
## paste0("\t",
## unique(strsplit(oF, split = " ")[[1]][grep(
## pattern = "absDiff",
## x = strsplit(oF, split = " ")[[1]])])))
##
## }
generals <- c(paste0("\t",
variables[[1]]$variables[variables[[1]]$idxNodes]),
paste0("\t",
variables[[1]]$variables[variables[[1]]$idxB]),
paste0("\t",
unique(strsplit(oF, split = " ")[[1]][grep(
pattern = "absDiff",
x = strsplit(oF, split = " ")[[1]])])))
return(generals)
}
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.