-
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 addgt
andflextable
(respectively) to the path and throw an error if this cannot be done.
- Fixed bug in
col_binomial()
that prevented it from acceptingNA
as an argument ton
orN
.
- Limited confidence intervals in
col_binomial()
to the range [0, 1] (#27). Previously, it was possible to observeci_lower < 0
orci_upper > 1
when 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_col
function to allow users to make their owncol
objects (#16). - Added rounding to projections (#11).
- Add
weight
argument tocol_freq
to allow for weighted frequencies. - Implemented
prj_flextable()
for projecting as aflextable
object (#12). - Implemented a
col_row
class 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 anote
field to thecol_binomial
class to store information on how the parameters were estimated. (#8, #9). - Made
projectable_col
class extensible by introducing thenew_col()
function. (#16). - Added a
NEWS.md
file to track changes to the package.
- Initial release