export.R2X.Files {HFWutils} | R Documentation |
export all variables held in R2X into csv files
export.R2X.Files(R2X, pfad = "data/R2X/")
R2X |
is a list |
pfad |
can be any folder name |
R2X is a list.
~Describe the value returned If it is a LIST, use
comp1 |
Description of 'comp1' |
comp2 |
Description of 'comp2' |
...
~~further notes~~
Felix Wittmann hfwittmann@gmail.com
~put references to the literature/web site here ~
~~objects to See Also as import.X2R.Files
, ~~~
x<- 1:10 y <- matrix(LETTERS[1:25],nrow=5,ncol=5) R2X <- list(x=x,y=y) inst() export.R2X.Files(R2X) # now the variables x and y are saved in correspoding csv files in the folder /data/R2X X2R <- list() X2R <- import.X2R.Files('data/R2X/') # now the variables x and y are loaded from correspoding csv files in the folder /data/R2X into X2R #> X2R$x # x #1 1 #2 2 #3 3 #4 4 #5 5 #6 6 #7 7 #8 8 #9 9 #10 10# #> X2R$y # V1 V2 V3 V4 V5 #1 A F K P U #2 B G L Q V #3 C H M R W #4 D I N S X #5 E J O T Y