-
Deprecated
spec_col_freq(). This function was implemented in a fairly unsafe way. It is being dropped without deprecation since it is purely a convenience function, the usefulness of which is limited anyway. -
prj_gt()andprj_flex()now attempt to addgtandflextable(respectively) to the path and throw an error if this cannot be done.
- Fixed bug in
col_binomial()that prevented it from acceptingNAas an argument tonorN.
- Limited confidence intervals in
col_binomial()to the range [0, 1] (#27). Previously, it was possible to observeci_lower < 0orci_upper > 1when computing confidence intervals with a finite population correction. However, such values are not sensible. Now,col_binomial()will force such values to 0 or 1.
- Fixed bug in
col_binomial()that was turning FPC off.
- Implemented
new_colfunction to allow users to make their owncolobjects (#16). - Added rounding to projections (#11).
- Add
weightargument tocol_freqto allow for weighted frequencies. - Implemented
prj_flextable()for projecting as aflextableobject (#12). - Implemented a
col_rowclass and associatedcol_row()function to allow special handling of dataframe columns representing row labels. (#14). - Reimplemented the
col_binomial()function usingasbio::ci.p()primarily to allow the user to select a parameter estimation method, and added anotefield to thecol_binomialclass to store information on how the parameters were estimated. (#8, #9). - Made
projectable_colclass extensible by introducing thenew_col()function. (#16). - Added a
NEWS.mdfile to track changes to the package.
- Initial release