View source: R/Functions_Generic.R
| remove_attributes | R Documentation |
This function clears attributes
The parameters can be shorted to lat, lon if space is short.
remove_attributes(x)
x |
the variable which to remove the attributes |
df <- list(
fun = function(x){sum(x)},
fun1 = function(x){mean(x)},
fun2 = function(x){sd(x)}
)
df$fun <- remove_attributes(df$fun)
df <- lapply(df, remove_attributes)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.