sheet | R Documentation |
sheet
and as.sheet
are shortcuts to data.frame
and
as.data.frame
with stringsAsFactors = FALSE, check.names = FALSE.
sheet(...)
as.sheet(x, ...)
... |
objects, possibly named |
x |
object to be coerced to data.frame |
data.frame/list
data.frame, as.data.frame
# see the difference
df1 = data.frame(a = letters[1:3], "This is my long name" = 1:3)
df2 = sheet(a = letters[1:3], "This is my long name" = 1:3)
str(df1)
str(df2)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.