list_dff | R Documentation |
Data frames almacenados en un archivo.
list_dff(file, meta = TRUE)
file |
character: nombre del archivo |
meta |
logical: devolver metadatos? (TRUE por defecto) |
Alias de la función list_off
con argumento
"data.frame" en el parámetro "class".
character or data.frame
Eddy Castellón
list_off
, meta
df <- data.frame(x = 1:3, y = 3:1)
meta(df) <- "some metadata"
d2 <- data.frame(a = letters[1:3], b = LETTERS[1:3])
vi <- 1:3
fi <- tempfile()
save(df, d2, vi, file = fi)
list_dff(fi)
unlink(fi)
rm(df, d2, vi, fi)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.