Learn R Programming

compare (version 0.2-6)

sourceFile: Evaluate R Code from a File

Description

Evaluate R code from a file within a local environment and return a list of objects of interest.

Usage

sourceFile(filename, modelNames)

Arguments

filename
The name of a file containing R code.
modelNames
The names of objects of interest that should be generated by the R code in the file and that we want returned.

Value

A list containing one component for each name in modelNames.

See Also

compareFile

Examples

Run this code
modelNames <- c("id", "age", 
                "edu", "class", 
                "IndianMothers")
sourceFile(system.file("example", "student1.R", package="compare"),
           modelNames)

Run the code above in your browser using DataLab