| read.dat | R Documentation |
The set of functions to import experimental dataset from DBSolveOptimum format .DAT file.
read.dat reads .DAT file and perform initial parsing.
import.dat creates ruData object from read.dat output.
read.dat(file) import.dat(dat)
file |
filename of .DAT file. |
dat |
list object of format ruData.raw which is output of |
The returned value of import.dat is an object of class ruData which mode is list and structure corresponds to ruList. Second level is lists each of which has the following components:
data_id |
character identifier of the dataset |
data |
experimental data of |
conditions |
data.frame describing conditions |
solver |
character identifier of solver type: ode, explicit, implicit |
error.type |
description of error model, currently possible values are: "additive T", "additive F" |
write.list
### read and save data from 'example4.dat' filePath<-system.file(package = "dbs", "extdata/example4.dat") dat_raw<-read.dat(filePath) example4_ruData<-import.dat(dat_raw) write.list(example4_ruData, "example4_ruData.txt")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.