Learn R Programming

nonmemica (version 0.9.1)

specfile.character: Identify the Data Specification File for a Model

Description

Identifies the data specification file associated with the datafile used by a model. Locates the datafile specified in the control stream, and substitutes a different extension.

Usage

# S3 method for character
specfile(x, find = "\\.csv$", use = ".spec", ...)

Arguments

x

the model name

find

file extension to replace

use

file extension to use

...

pass ext over-ride default file extension in datafile()

Value

character

See Also

datafile

Other path: datafile.character, datafile.numeric, datafile, modeldir, modelfile, modelpath.character, modelpath.numeric, modelpath, 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