- added three more functions (concstats_top_df, concstats_top3_df, concstats_top5_df)
- added a helper function to calculate shares if input are raw data and not transformed to shares
- gave all functions a separate R script
- all functions have now their own test file
- corrected Simpson measure #3
- improved input behavior for integer vectors representing shares
- functions error on any negative value
- revisited and updated documentation and vignettes
- changed to version 0.1.6
- unified variable declaration (all x, instead of shares)
- corrected the implementation of the GRS formula
- enhanced examples, added references to functions, each function has now its own documentation
- updated vignette "Introduction to concstats", and added code for the plot "Credit cooperatives"
- link from README to CONTRIBUTING.md
- using fs() for direct links in documentation
- corrected function names
unbiased
changed tonormalized
; implemented messages and tests- computation yields
NA
just ifNAs
are present (changed documentation) - removed dependencies (readr and dplyr)
- added argument
digits
for some functions to enable user control of the printed number of digits - reviewed, changed or added tests for several functions
- changed data-raw/creditcoops.R, on line 3 n() to dplyr::n()
-
Added more tests
-
Added standards for ropensci peer-review
DOCUMENTATION
- Updated README with Prior Arts
-
All functions have been consistently prefixed with "concstats_"
-
Updated documentation and web page
For the submission to CRAN the author fixed the following issues:
-
increased version number to v.0.1.2.
-
Fixed issues with unit testing regarding floating doubles
For the resubmission to CRAN the author fixed the following issues:
-
increased version number.
-
Fixed issues with unit testing.
For the resubmission to CRAN the author fixed the following issues:
-
All references regarding methods were moved from their respective script files to the DESCRIPTION file.
-
Fixed issue with (unnecessary) instances of install.packages() in vignette.
This version of concstats
has been updated:
-
added code coverage for the package.
-
added
tests
for various functions and group of functions.
Most of the functions have been streamlined with less lines of code.
This development version of the concstats
package has been completely restructured. The one-step function has been recomposed in three main groups and the following functions (measures) were added:
-
the group wrapper for the concentration/competition measures (comp.R) contains the following functions:
-
hhi
-
hhi_d
-
hhi_min
-
dom
-
sten
-
all_comp
- calculates all the measures of the wrapper in a one-step procedure
-
-
the inequality wrapper (inequ.R) added the following functions:
-
entropy
-
gini
-
berry
-
palma
-
grs
-
all_inequ
- calculates all the measures of the wrapper in a one-step procedure
-
-
the market structure wrapper (mstruct.R) contains the following functions:
-
firm
-
nrs_eq
-
top
-
top3
-
top5
-
all_mstruct
- calculates all the measures of the wrapper in a one-step procedure
-
-
concstats
- calculates a set of eight preselected concentration and diversity measures in a one-step procedure
-
Updated
Description
andReadme
file -
Added
vignettes
-
Added
web page
-
Added
creditcoops
, a small data set -
Added a
NEWS.md
file to track changes to the package.
- initial version