sourceFile: Evaluate R Code from a File

Description Usage Arguments Value Author(s) See Also Examples

View source: R/file.R

Description

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

Usage

1
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.

Author(s)

Paul Murrell

See Also

compareFile

Examples

1
2
3
4
5
modelNames <- c("id", "age", 
                "edu", "class", 
                "IndianMothers")
sourceFile(system.file("example", "student1.R", package="compare"),
           modelNames)

compare documentation built on May 2, 2019, 10:24 a.m.