Learn R Programming

Zelig (version 4.2-1)

zelig.skeleton: Creates a Skeleton for a New Zelig package

Description

'zelig.skeleton' generates the necessary files used to create a Zelig package. Based on (and using) R's 'package.skeleton' it removes some of the monotony of building statistical packages. In particular, 'zelig.skeleton' produces templates for the zelig2, describe, param, and qi methods. For more information about creating these files on an individual basis, please refer to the tech manuals, which are available by typing: ?zelig2, ?param, or ?qi.

Usage

zelig.skeleton(pkg, models = c(),
    author = "UNKNOWN AUTHOR", path = ".", force = FALSE,
    email = "maintainer@software-project.org",
    depends = c(), ..., .gitignore = TRUE,
    .Rbuildignore = TRUE)

Arguments

pkg
a character-string specifying the name of the Zelig package
models
a vector of strings specifying models to be included in the package
author
a vector of strings specifying contributors to the package
path
a character-string specifying the path to the package
force
a logical specifying whether to overwrite files and create necessary directories
email
a string specifying the email address of the package's maintainer
depends
a vector of strings specifying package dependencies
...
ignored parameters
.gitignore
a logical specifying whether to include a copy of a simple .gitignore in the appropriate folders (inst/doc and the package root
.Rbuildignore
a logical specifying whether to include a copy of a simple .Rbuildignore in the appropriate folders (inst/doc and the package root

Value

  • nothing