loadObject {galgo}R Documentation

Load saved data of class Object and use reObject as necessary

Description

Load the data from a file into the .GlobalEnv (or any other enviroment). If variables were converted to a list using unObject, this variables are converted to original object using reObject method.

Usage

loadObject(file, envir)

Arguments

file The file to load.
envir The environment to load the data. The default is .GlobalEnv.
verbose Displays progress.
reobjectize Specify if reObject method should be called. Defaults to TRUE.
compatibilize Compatibilze chromosomes built on previous versions.

Details

Load the data from a file into the .GlobalEnv (or any other enviroment). If variables were converted to a list using unObject, this variables are converted to original object using reObject method.

Value

A data frame with variable names and class of loaded objects.

Warning

It could take some seconds for large and/or complex objects/files.

Author(s)

Victor Trevino

See Also

unObject, reObject.

Examples

library(R.oo)  # needed library
o <- Object()
o$x = 1
o$y = 2
o$x
o$y
o
class(o)
names(o)
uo <- unObject(o)
uo
class(uo)
save(uo, file="uo.Rdata")

### perhaps other session here
library(R.oo)
loadObject("uo.Rdata")
uo
class(uo)
# the class is the original from the original object (o in this case)

### equivalent to:
library(R.oo)
load("uo.Rdata")
uo <- reObject(uo)
uo
class(uo)

[Package galgo version 1.0-10 Index]