Learn R Programming

nonmemica (version 0.9.1)

datafile.character: Identify the Datafile for a Model

Description

Identifies the datafile used by a model. Expresses it relative to current working directory.

Usage

# S3 method for character
datafile(x, ...)

Arguments

x

the model name or path to a control stream

...

ext can be passed to modelfile, etc.

Value

character

See Also

Other path: datafile.numeric, datafile, modeldir, modelfile, modelpath.character, modelpath.numeric, modelpath, specfile.character, specfile.numeric, specfile

Examples

Run this code
# NOT RUN {
library(spec)
source <- system.file(package = 'nonmemica','project')
target <- tempdir()
target <- gsub('\\\\','/',target) # for windows
file.copy(source,target,recursive = TRUE)
project <- file.path(target,'project','model')
options(project = project)
library(magrittr)
1001 %>% datafile
datafile(1001) %matches% specfile(1001)
1001 %>% specfile
1001 %>% specfile %>% read.spec
# }

Run the code above in your browser using DataLab