
Last chance! 50% off unlimited learning
Sale ends in
sheet
and as.sheet
are shortcuts to data.frame
and
as.data.frame
with stringsAsFactors = FALSE, check.names = FALSE.
.sheet
is the same as above but works in the scope of default
dataset.
sheet(...)as.sheet(x, ...)
.sheet(...)
objects, possibly named
object to be coerced to data.frame
data.frame/list
# NOT RUN {
# 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)
data(iris)
default_dataset(iris)
.sheet(Sepal.Width, Sepal.Length)
# }
Run the code above in your browser using DataLab