Skip to content

Releases: UCLATALL/supernova

2.4.4

05 Nov 23:41
3465a76
Compare
Choose a tag to compare
  • Removes supernova-vctrs from exports

2.4.3

05 Nov 23:42
1edb631
Compare
Choose a tag to compare
  • 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

25 Jul 16:40
d5922ae
Compare
Choose a tag to compare

Hotfix

2.4.1

24 Jul 18:19
f5d3b37
Compare
Choose a tag to compare

R3.4 Compatibility

2.4.0

04 May 14:54
dce65c8
Compare
Choose a tag to compare

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

04 Mar 00:20
fdd9c3e
Compare
Choose a tag to compare

New features

  • Dependency on lme4 is moved to Suggests. Models implementing lmerMod are handled via supernova.lmerMod and variables.lmerMod but use of the lme4 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

04 Nov 21:01
a76eb64
Compare
Choose a tag to compare

Minor Changes

  • Remove dependency on dplyr because it changes too quickly and has too many other dependencies
  • Mild refactoring to improve code readability

2.2.2

21 Aug 16:11
Compare
Choose a tag to compare

Bugfixes:

  • Keep up with updates to lme4
  • Fix problem where removing missing cases would produce multiple warnings instead of one

2.2.1

21 Aug 16:02
003838e
Compare
Choose a tag to compare

New Features

Add support for mixed models (as in nested and crossed). See the README for more information.

2.2.0

21 Aug 15:59
cfee237
Compare
Choose a tag to compare

New Features

Extend supernova to handle within (crossed) designs

  • Add lme4 and dplyr to Imports
  • Update R dependency to 3.5.0 (for serialized data; Rds)
  • Convert supernova to S3 class with methods for lm and lmerMod
  • 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