Loading dataset in R -
i'm trying load new dataset in r in same working directory( "c:\r" ) e.g "aust.rda" not working
x <- "aust.rda" data( x ) warning message: in data(x) : data set ‘x’ not found
i've tried
data( "aust.rda" ) warning message: in data("aust.rda") : data set ‘aust.rda’ not found
the .rda files loaded using load(), not readrds(). use load() , check environment. variables there.
use ls() see available variables.
also, @roman-luštrik mentions in comment, please check file path.
Comments
Post a Comment