Top "Rdata" questions

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

How to see data from .RData file?

I saw some similar qestions and I tried to work it out on my own, but I couldn't. This is …

r rdata
How to save data file into .RData?

I want to save data into an .RData file. For instance, I'd like to save into 1.RData with two csv …

r rdata
R data formats: RData, Rda, Rds etc

What are the main differences between .RData, .Rda and .Rds files? More specifically: Are there differences in compression etc? When …

r r-faq rdata rda
Loading .RData files into Python

I have a bunch of .RData time-series files and would like to load them directly into Python without first converting …

python r rdata
How can I load an object into a variable name that I specify from an R data file?

When you save a variable in an R data file using save, it is saved under whatever name it had …

r variable-names rdata
Get specific object from Rdata file

I have a Rdata file containing various objects: New.Rdata |_ Object 1 (e.g. data.frame) |_ Object 2 (e.g. matrix) |_... |_ Object …

r object rdata
Behavior of saveRDS() and readRDS() in regard to objects' attributes

Do saveRDS and readRDS, correspondingly, save and restore all object's attributes, including ones created by an application (via attr)? I …

r persistence environment persistent rdata
Saving matrix in Rdata and updating Rdata file

I have a matrix: mat<-matrix(data=1:30,ncol=10,nrow=3) I would like to save this to Rdata: save(mat, …

r rdata
Reading Rdata file with different encoding

I have an .RData file to read on my Linux (UTF-8) machine, but I know the file is in Latin1 …

r linux encoding utf-8 rdata
Opening Rdata file on R

I have some trouble to open Rdata files on Rstudio. I tried different directory. I tried the load() function. I …

r file rdata setwd