s******s 发帖数: 13035 | 1 解释一下,用一个package,它每次都要先读数据,我需要对数据做随机变化,
但是这个package读数据有自己的method和数据结构,我又不想花时间把它的结构
搞清楚,也不想每次都重新写一个file在硬盘上让它读,有啥办法么 |
k*******a 发帖数: 772 | 2 do you mean save as image?
save(mydata, file="mydata.rda")
next time you can load it using,
load("mydata.rda") |
s*r 发帖数: 2757 | |
t*****w 发帖数: 254 | 4 try to change file path by your variable name. or give me your R code.
【在 s******s 的大作中提到】 : 解释一下,用一个package,它每次都要先读数据,我需要对数据做随机变化, : 但是这个package读数据有自己的method和数据结构,我又不想花时间把它的结构 : 搞清楚,也不想每次都重新写一个file在硬盘上让它读,有啥办法么
|
s******s 发帖数: 13035 | 5 looks like what I want, thanks
【在 s*r 的大作中提到】 : textConnection
|
s******s 发帖数: 13035 | 6 thank you
【在 t*****w 的大作中提到】 : try to change file path by your variable name. or give me your R code.
|
s******s 发帖数: 13035 | 7 I mean to pretend a variable as a file, so that another code
that use myterious method to read file can get date from my variable
【在 k*******a 的大作中提到】 : do you mean save as image? : save(mydata, file="mydata.rda") : next time you can load it using, : load("mydata.rda")
|