Releases: UCLATALL/supernova
Releases · UCLATALL/supernova
2.4.4
2.4.3
- Fixes issues with lintr causing R CMD CHECK to fail
- Changes maintainer to @adamblake
- Changes mislabeled factor level in Fingers$Interest to "Very Interested"
2.4.2
Hotfix
- Adds minimum version requirement for
pillar
(thanks @cedricbatailler)
2.4.1
2.4.0
New features
There are four new pairwise comparisons functions:
pairwise()
pairwise_t()
pairwise_bonferroni()
pairwise_tukey()
Each of these determines all the pairwise comparisons that can be made for a model (fit by lm()
) and then computes the comparisons. For pairwise_t()
no correction is made for multiple comparisons, but for the others, the named correction is made. These corrections can also be specified as arguments to the pairwise()
wrapper function. Each function produces output that has customized printing, supports most (if not all) normal data frame actions, and a plotting function that graphs the mean differences and their confidence intervals.
2.3.0
New features
- Dependency on
lme4
is moved to Suggests. Models implementinglmerMod
are handled viasupernova.lmerMod
andvariables.lmerMod
but use of thelme4
package is limited to tests. - More robust and readable implementation of
variables()
using the new formula utility functions added. See?formula_building
,?formula_expansion
, and?formula_extraction
. - Add a new function
equation()
to extract the fitted equation from a linear model (lm()
) (thanks for the suggestion from @ave-63!)
2.2.3
2.2.2
2.2.1
2.2.0
New Features
Extend supernova to handle within (crossed) designs
- Add
lme4
anddplyr
to Imports - Update R dependency to 3.5.0 (for serialized data; Rds)
- Convert
supernova
to S3 class with methods forlm
andlmerMod
- Add tests for
supernova()
for crossed (but not nested)lmer()
fits - Extend
print.supernova
to handle new models
Minor Changes
- Refactor utility functions into utils.R
- Add internal documentaiton for utility functions