Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to open .rdb file using R

Tags:

r

My question is quite simple, but I couldn't find the answer anywhere. How do I open a .rdb file using R?

It is placed inside an R package.

like image 838
python_enthusiast Avatar asked Sep 12 '17 19:09

python_enthusiast


1 Answers

I have been able to solve the problem, so I am posting the answer here in case someone needs it in the future.

#### Importing data from .rdb file ####

setwd("path...\\Rsafd\\Rsafd\\data")  # Set working directory up to the file that contains
# your .rds and .rdb files.

readRDS("Rdata.rds")  # see metadata contained in .rds file

# lazyLoad is the function we use to open a .rdb file:
lazyLoad(filebase = "path...\\Rsafd\\Rsafd\\data\\Rdata", envir = parent.frame())
# for filebase, Rdata is the name of the .rdb file.
# envir is the environment on which the objects are loaded.

The result of using the lazyLoad function is that every database contained in the .rdb file shows up in your variable environment as a "promise". This means that the database will not be opened unless you want it to be.

The way to open it is the following:

find(HOWAREYOU)  # open the file named HOWAREYOU
head(HOWAREYOU)  # look at the first entries, just to make sure

Edit: readRDS is not part of the process to open the .rdb file, it is just to look at the metadata. The lazyLoad function indeed opens .rdb files.

like image 109
python_enthusiast Avatar answered Nov 12 '22 03:11

python_enthusiast