Questions tagged [rdata]

The Rdata file format is a binary, R specific, file format used to store arbitrary R objects

The Rdata file format is a binary, R specific, file format used to store arbitrary R objects. Saving and restoring of these objects is done using save and load. See their respective documentations for more information.

206 questions
0
votes
2 answers

ODBC connection to RData

We have some R programmers who are doing good scripting work. And we have some R muggles who would like to be able to look at the data. Is it possible to make an ODBC connection to an .RData file? And, from there, to use MS Access as a front end for…
0
votes
1 answer

Recover ffdf from .ff files when .RData is missing

I am using read.dbi.ffdf from the ETLUtils package to connect to an Oracle db and create an ffdf from the resulting query. I then save it to a local drive using save.ffdf. In the past I have closed R, and then used load.ffdf to successfully reload…
dnlbrky
  • 9,396
  • 2
  • 51
  • 64
0
votes
1 answer

Saving R objects not workspaces

i am completely new in R. I am trying to save a spatialdataframe and a normal data frame within the same object. when I am applying the code below, it saves the object as a R workspace, is it normal? i mean I wnated to obtain a .rda data instead.…
Peter
  • 3
  • 3
0
votes
1 answer

convert raw data file to RData file

I am trying to make a RData file from a raw numeric space deliminated text file, i.e 11 33 55 22 33 45 25 78 00 44 87 99 .... I have another R script which needs to load this new RData file and perform linear regression with the data using…
cs_newbie
  • 1,959
  • 1
  • 15
  • 16
-1
votes
1 answer

error in load () funtion when try to laod .RData format

I need to convert a shapefile (.shp) formate into .RData format. I used the following codes but when I load the RData format file I get error Code: # to save .RData format which runs smoothly without error save(trainData, file =…
-1
votes
1 answer

does R binary format changes from version to version

My question is if an object in R saved to binary format using the save function can be different if saved from different (but recent) versions of R. That is because I have a script that makes some calculations and save its results to a file. When…
user2759511
  • 640
  • 7
  • 16
-1
votes
1 answer

Convert Sage List of list of list to R list of list of list

I have a sage list of list of list that is the result of some function applied over an R list of list of list (converted to sage format) The code goes like this: %r my_r_list<-load("my_r_list.RData") for d in range(D): for s in range(S): …
-1
votes
1 answer

Loading .RData in R 3.2.2

I'm missing something very basic here. I want to retrieve saved .RData using load command but could not figured out it. X <- seq(from=1, 10, by=1) Y <- seq(from=1, 20, by=2) df1 <- data.frame(X, Y) df1 save(object=df1, file =…
MYaseen208
  • 22,666
  • 37
  • 165
  • 309
-2
votes
2 answers

How to merge three .RData files with same object name in R

I am a new user of R. I have three RData files with the same object name and I want to merge it so that I will have one .Rdata file with one object name. Example: file1.RData with object name A file2.RData with object name A file3.RData with…
-3
votes
2 answers

Reading multiple .dat files as a list and saving as .RDATA files in R

I want to import multiple .DAT files from a directory and make them as a list elements and then save them as .RDATA files. I tried the following code files <- dir(pattern = "*.DAT") library(tidyverse) Data1 <- files %>% map(~ read.table(file…
MYaseen208
  • 22,666
  • 37
  • 165
  • 309
1 2 3
13
14