mparse
creates a
'>SimInf_mparse
object with your model
definition that is ready to be initialised with data and then
run
.
Create a package skeleton for a model depending on SimInfDescribe your model in a logical way in R. mparse
creates a
'>SimInf_mparse
object with your model
definition that is ready to be initialised with data and then
run
.
Create a package skeleton for a model depending on SimInf
package_skeleton(model, name = NULL, path = ".", author = NULL,
email = NULL, maintainer = NULL, license = "GPL-3")# S4 method for SimInf_mparse
package_skeleton(model, name = NULL, path = ".",
author = NULL, email = NULL, maintainer = NULL, license = "GPL-3")
Character string: the package name and directory name for your package.
Path to put the package directory in. Default is '.' i.e. the current directory.
Author of the package.
Email of the package maintainer.
Maintainer of the package.
License of the package. Default is 'GPL-3'.
invisible NULL
.
Read the Writing R Extensions manual for more details.
Once you have created a source package you need to install
it: see the R Installation and Administration manual,
INSTALL
and install.packages
.