Displaying 1 result from an estimated 1 matches for "experiment_001_x".
2012 Jan 22
4
how to save the R script itself into a rData file?
...to save different R script files with different names
when only parameters are different, and not to say if there are a bunch of
parameters that need to be put into file names...
Lets say I changed the parameters x to 0.123, y to -0.456, z to -999.99
Then I have to save the R script file as
"Experiment_001_x=0.123_y=-0.456_z=-999.99.r"
and the result file as "Experiment_001_x=0.123_y=-0.456_z=-999.99.rData"
...
This is kind of messy, isn't it?
Is there a way to save the whole script file (i.e. the context where the
data file is generated) into the rData file? It cannot be the fil...