Entering edit mode
12.6 years ago
Nitin
▴
170
Hi all,
I want to create dataset in R so that i load into R session as follows
data(mydatasetname)
I tried following
values<- read.table("mydatasetname.txt") save(values,file="value.rda")
but wen i type following command to load data
data(values)
Warning message: In data(values) : data set ‘values’ not found
Can anybody help
Nitin