search for: rdata

Displaying 20 results from an estimated 1297 matches for "rdata".

Did you mean: data
2011 Jun 19
1
save and load in R
I have a list of txt files that I want to convert into .rdata R data object. filenames 1. "./file1.txt" 2. "./file2.txt" 3. "./file3.txt" 4. "./file4.txt" 5. "./file5.txt" 6. "./file6.txt" 7. "./file7.txt" 8. "./file8.txt" 9. "./file9.txt" 10. "./file10.txt"...
2005 Apr 07
2
Zipping Rdata Files
Saving Rdata files in a zip archive form can in some cases save a considerable amount of disk space. R has the zip.file.extract function to extract files from zip archives, but appears not to have any corresponding function to save in zipped form. (At least I have not been able to find anything in the help file...
2020 May 30
3
Cargar archivo .RData desde OneDrive, Google Drive o Dropbox
...cias por la respuesta. Yo también puedo descargar el fichero pero no lo carga de forma correcta: > drive_download(" https://drive.google.com/file/d/1iN7rT-W8WoXsdBpKzxcatFx7nGPWNkuz/view?usp=sharing ", + overwrite = TRUE, verbose = TRUE) File downloaded: * restaurant.RData Saved locally as: * restaurant.RData > restaurant <- load("restaurant.RData") > summary(restaurant) Length Class Mode 1 character character El sáb., 30 de may. de 2020 a la(s) 17:31, Carlos Ortega ( cof en qualityexcellence.es) escribió: > Hola, > &g...
2006 May 25
1
save() saves extra stuff if object is not evaluated
...ave(file=file, sources, compress=FALSE) } aVariableNotSaved <- double(1e6) main <- function() { # This 'big' variable is saved in case 1 below! big <- rep(letters, length.out=1e5) identifier <- "This string will be saved too!" y <- 1 file <- "a.RData" saveCache(y, file=file) peek(file) file <- "a-eval.RData" saveCache(y, file=file, eval=TRUE) peek(file) file <- "b-noy.RData" saveCache(file=file) peek(file) file <- "b-noy-eval.RData" saveCache(file=file, eval=TRUE) peek(file) }...
2005 Feb 01
1
RData loading weirdness
...x, and so I dont expect bugfixes, I'm just reporting this out of interest in case anyone else has had this happen. Starting R caused a seg fault shortly after "[Previously saved workspace restored]". Running "R --no-restore-data" worked fine so I suspected a corrupted .RData. It was 67M big, with about 400 objects - nothing extreme there. But then doing load(".RData") worked fine. There were his objects. How strange. I deleted the first 200 objects, saved the .RData, and retried. That worked, so I thought it might have been an object in the last 200 or...
2005 Feb 01
1
RData loading weirdness
...x, and so I dont expect bugfixes, I'm just reporting this out of interest in case anyone else has had this happen. Starting R caused a seg fault shortly after "[Previously saved workspace restored]". Running "R --no-restore-data" worked fine so I suspected a corrupted .RData. It was 67M big, with about 400 objects - nothing extreme there. But then doing load(".RData") worked fine. There were his objects. How strange. I deleted the first 200 objects, saved the .RData, and retried. That worked, so I thought it might have been an object in the last 200 or...
2008 Mar 27
4
Execute R with *.RData argument
Dear R developers, i would like to start R with a *.RData argument under Linux. Something like R -f /home/user/workspace.RData Is this possible? Thanks in advance for any answers. -- View this message in context: http://www.nabble.com/Execute-R-with-*.RData-argument-tp16323374p16323374.html Sent from the R help mailing list archive at Nabble.com.
2012 Jul 19
2
change file name from file0.1_data.RData to file1_data.Rdata
Dear All, I want to change file names. I have file0.1_data.RData (I have several files whose names are file0.x_data.Rdata) I want to rename it to file1_data.RData How can I do it? Thank you for saving my time! [[alternative HTML version deleted]]
2020 May 30
3
Cargar archivo .RData desde OneDrive, Google Drive o Dropbox
Hola a todos, espero que todo esté marchando bien. Estoy intentando cargar un archivo con extensión .RData desde OneDrive, Google Drive o Dropbox. Con OneDrive he intentado lo siguiente: temp <- tempfile() download.file(" https://alumnosuatedu-my.sharepoint.com/:u:/g/personal/rivaldez_uat_edu_mx/ESNKsBZE5rhMp4_shdbavXEBz4mUuIaeKWIXlMMlpyqyUA?e=NfZupt ", temp, method = "...
2004 Dec 28
3
lost association for .RData files
Somehow I have lost the correct file association for .RData files. They are now associated with a text file editor. When I right click on any .RData file and try to change the association, R is not listed as a choice of program. I browse to c:\Program Files\R\rw2001\bin\Rgui.exe and select that file to open .RData, but Windows does not then place Rgui.exe i...
2011 Mar 28
1
problem in simple saving and loading data frames
...mes not responsive. So I need a way to save my dataframe in my workdirectory as such. Execuse me if the problem is too simple. I tried the following, I do not know what is wrong with it: Example data: x <- 1:10 y <- 21:30 z <- 31:40 df2 <- data.frame(x,y, z) save(df2, file="df2.RData") My trials # trying to load data(df2) Warning message: In data(df2) : data set 'df2' not found data(df2.RData) Warning message: In data(df2.RData) : data set 'df2.RData' not found data("df2.RData") Warning message: In data("df2.RData") : data set 'd...
2003 Oct 03
4
foo.RData or foo.r?
Dear All, I suspect this is kind of dumb, but when I was under the thrall of the dark lord (read, using a W2K box), all my work in R files came out as foo.RData. I moved on to GNU/Linux, and all the old .RData files keep on working as they used. No problems in loading and stuff. But I use R from the terminal. Assuming I decide to switch to emacs, do I need to save my work as foo.r? what about my old files? shall I simply "mv" them to foo.r? all i...
2017 Oct 07
2
load() failed to load .Rdata file in AWS-Ububtu
Hi again, I hope this is the right place to post my question on running R within Ubuntu, however if not, any pointer on right distribution list will be helpful. I am currently using R in Ubuntu which is hosted in Amazon - AWS. I have a .Rdata file in AWS which I am trying to load in R. Used following code, however, fails to load showing some permission issue. However that same .Rdata file is getting loaded perfectly when I try in my regular iOS. Below is my code and corresponding result : ubuntu at ip-172-31-23-148:~$ R R version 3....
2018 Jan 16
1
Merging RData files
Understood. In my case, a.RData and b.RData contain identical variables/data, plus simulation outputs from separate runs. The codes deliver what I need. Good to know the three lines work. Thank you. On 1/16/2018 8:06 PM, Duncan Murdoch wrote: > On 16/01/2018 6:33 AM, Steven Yen wrote: >> Hi all, >> This is great...
2018 Jan 16
0
Merging RData files
On 16/01/2018 6:33 AM, Steven Yen wrote: > Hi all, > This is great. Again, here is what I need. I run two separate jobs (a.R > and b.R) with results (say regression outputs) going to a.RData and > b.RData. I like to put all results in one place (where I can retrieve > them in one place, ab.RData). The following codes do it (I am not sure > if line 2 is needed but I am happy). Thank you all. > > load("a.RData") > save.image("ab.RData") > load(&q...
2006 Nov 17
2
Getting R and .Rdata together again
Somehow, I've managed to have my .Rdata files become `disassociated' from the R program. I am running Windows XP Pro. I have re-installed R 2.4 in an attempt to have it re-associate itself with .Rdata files, but to no avail. .Rdata files are now associated with a file compression program or alternatively with Rgui.exe. .Rdata file...
2018 Jan 16
2
Merging RData files
Hi all, This is great. Again, here is what I need. I run two separate jobs (a.R and b.R) with results (say regression outputs) going to a.RData and b.RData. I like to put all results in one place (where I can retrieve them in one place, ab.RData). The following codes do it (I am not sure if line 2 is needed but I am happy). Thank you all. load("a.RData") save.image("ab.RData") load("b.RData") save.image(&q...
2017 Oct 08
2
load() failed to load .Rdata file in AWS-Ububtu
...blications. Type 'demo()' for some demos, 'help()' for on-line help, or 'help.start()' for an HTML browser interface to help. Type 'q()' to quit R. During startup - Warning message: Setting LC_CTYPE failed, using "C" > load("/home/ubuntu/Dat.RData") > However it still failing when I try that within my shiny app in AWS. Below are my ui.R and server.R files respectively. library(shiny) # Define UI for miles per gallon application fluidPage( fluidRow( column(12, tableOutput('table') ) )...
2012 Mar 07
4
add data from .RData file
I got two .RData file e.g data.2005.RData & data.2006.RData I would like to combine these two different data set and make single RData file. in both file there are some NULL files are also available and I would like to clear this NULL files also. $ : NULL $ : NULL $ : num [1:43285, 1:8] -21.1 -21.1 -24.9 -...
2011 Jan 05
1
RData size
Hi, I noticed a Rdata size issue that's puzzling to me. Attached find 2 example datasets in text file. Both are 100x5, so the sizes for both text file are the same. However, when I read them into R, the sizes are much different: tt<-as.matrix(read.table("tt.txt",header=T,row.names=1)) save(tt,file=...