Full documentation is available at COINr’s website
COINr is a high-level R package which is the first fully-flexible development and analysis environment for composite indicators and scoreboards. The main features can be summarised as features for building, features for analysis and features for visualisation and presentation.
Building features:
Analysis features:
Visualisation and presentation:
COINr also allows fast import from the COIN Tool and fast export to Excel.
COINr is on CRAN and can be installed by running:
# Install released version from CRAN
install.packages("COINr")
The development version, which may be slightly more up-to-date, can be installed from GitHub:
# Install development version from GitHub
::install_github("bluefoxr/COINr") devtools
This should directly install the package from Github, without any other steps. You may be asked to update packages. This might not be strictly necessary, so you can also try skipping this step.
COINr needs a little reading and learning to understand properly. But once you have done that, it can be very powerful for developing composite indicators.
A good place to get started is COINr’s “Overview” vignette. Try
vignette("overview")
.
The most thorough documentation is available at COINr’s website (developed
using pkgdown). This contains all package documentation in an
easy-to-navigate format. All documentation available here is also
available by browsing COINr vignettes: see
vignette(package = "COINr")
.
COINr has been recently updated to v1.0, skipping a few version
numbers. This has brought in many new features, some discarded features,
less dependencies and more robust underlying code. The syntax has also
been changed to make the package more consistent. See
vignette("v1")
to learn about these changes if you were
using COINr prior to v1.0.
COINr documentation was previously contained in an online book. This is still available, and although the principles of composite indicators there are still all valid, the code refers strictly to COINr < v.1.0.
If you prefer to roll back to the old COINr, you can still install it as a separate package called “COINr6”. This is available on GitHub:
::install_github("bluefoxr/COINr6") remotes
For general help with COINr, the best place to look is the package’s
documentation which is available either via the command line
(vignette(package = "COINr")
) or by checking individual
function documentation (?function_name
). All documentation
is also conveniently available online at COINr’s website.
If you find any problems with the package, including bugs or suggestions, either open a GitHub issue here, or else contact me by email.
Finally, contributions to the package are most welcome. This should be done by cloning the repo, making your modifications, and then opening a pull request. You could also contact me in advance to discuss changes and extensions. Any changes (especially new functions) should be accompanied by unit tests, and all existing tests should run without errors or warnings. To do this, run:
::test() devtools
If you have found COINr helpful, we are grateful if you cite the package. COINr is citable by a paper in the Journal of Open Source Software which you can find here (with citation information).
In R you can also generate the citation info using
citation(package = "COINr")
, or see the same info on the COINr web
page.