1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
Title: rpf
# Why use RPF?
<!-- badges: start -->
[](https://app.travis-ci.com/github/jpritikin/rpf)
[](https://app.codecov.io/gh/jpritikin/rpf?branch=master)
[](https://cran.r-project.org/package=rpf)
[](https://cranlogs.r-pkg.org/badges/rpf)
[](https://cranlogs.r-pkg.org/badges/grand-total/rpf)
<!-- badges: end -->
The idea behind RPF is modularity. Most item factor analysis software
is not modular. Modularity facilitates more contributors and cross
pollination between projects.
# Installation
To get the current released version from CRAN:
```R
install.packages("rpf")
```
# Developer notes
There are a number of useful scripts in the `tools` subdir:
* `install` -- Installs the package as quickly as possible. Skips
building the vignettes and documentation.
* `build` -- Builds a source tarball
* `check` -- Builds a source tarball and checks it
* `rox` -- Re-generates the documentation.
* `test` -- Runs the test suite using the uninstalled tests against the
installed package.
* `autodep` -- Recalculates the header file dependences
If you're working on the C++ code, you probably want to adjust the
settings in `src/Makevars`.
|