NEWS (original) (raw)
reghelper 1.1.1
- Fixes bug with very long lists of variables in
build_model()orcell_means() - Properly throws error for
graph_model()when required inputs are not specified - Fixes bug with
beta()for glm models that include an offset value - Fixes bug with
simple_slopes()when one variable name is a subset of another variable name - Fixes bug with
simple_slopes()when default contrast options are changed
reghelper 1.1.0
- Adds David Beiner as a co-maintainer of the package
- Support for confidence intervals for
simple_slopes()
BUG FIX
- Fixes warning raised when using a long formula with
simple_slopes()
reghelper 1.0.2
BUG FIXES
- Fixes errors in
beta()andsimple_slopes()resulting from factor variables that have spaces or other special characters - Adds support for character vectors added to models, where R silently converts them to factors
- Fixes error in
graph_model()documentation
reghelper 1.0.1
BUG FIX
- Fixes error raised when weights were used in
lmandlme4models. This occurred in several functions, includingbeta(),simple_slopes(), andsig_regions(). Weights should now properly be applied without issue.
reghelper 1.0.0
Just a note: While reghelper has officially reached version 1.0.0, the fact is that it has been stable and relatively feature complete quite some time. The change from v0.3.6 to v1.0.0 is not drastic, but does involve some minor breaking changes, hence an increase to the major version number. But quite frankly, it should have been bumped to v1.x a long time ago.
BREAKING CHANGES
- The
beta()method has now been removed fornlmeandlme4models. These had been deprecated in the previous release. See the README for more details: https://github.com/jeff-hughes/reghelper - Minor breaking changes. These should not impact most users, but could impact those who are extracting elements from the output of these functions in a programmatic fashion:
simple_slopes()for anlme4model now returns a data frame of classsimple_slopesrather thansimple_slopes_lme4- When running
simple_slopes()with categorical variables with more than two levels (i.e. a factor variable with two or more contrasts), the output now provides the name of the contrast in the parentheses after thesstestlabel. Users who are extracting values should usestartsWith(value, 'sstest')rather thanvalue == 'sstest'to match appropriately.
BUG FIXES
- Fixes issues with incorrect variable labels in
simple_slopes()output when there is more than one categorical variable with more than two levels. - Provides better support for
lmerTestmodels insimple_slopes()
reghelper 0.3.6
This release deprecates the beta() method fornlme and lme4 models. See the README for more details: https://github.com/jeff-hughes/reghelper
reghelper 0.3.5
This is a patch release to fix a bug in the beta() function, to allow use of lmerTest models.
reghelper 0.3.4
This is a patch release to cover changes made to the ggplot2 package.
BUG FIXES
- Fixed simple_slopes() to cover cases of contrasts that have no column names.
reghelper 0.3.3
This is a patch release covering changes necessary to prepare for submission to CRAN. Most changes will not affect current code; however, be aware of the following changes:
- Many of the functions have had the dots parameter (…) added, to ensure consistency with the S3 generic function. However, any extra parameters will simply be ignored. Thus, this does not impact any user code.
- Package functions which implement the following generic methods have had their first parameter renamed, again for consistency with the S3 generic: summary, print, coef, residuals, fitted. In most cases, this will not impact user code, unless you have used named parameters, e.g.,
summary(model=results)should now besummary(object=results).
BUG FIXES
- Fixed bug when using
build_modelbut only providing a single model to be run. - Created special print method for
simple_slopesso that “lme4” models print correctly. - Fixed bug (correctly this time) with
simple_slopesusing incorrect contrasts for factor variables.
reghelper 0.3.2
BUG FIXES
- Fixed bug with
simple_slopesusing incorrect contrasts for factor variables. Resolves Issue #2.
reghelper 0.3.1
build_modelnow drops missing data based on the variables included in the final model, so that all models are tested on the same data.- The
titlesparameter ofgraph_modelhas been changed tolabels, and now takes a named list rather than relying on the index of a character vector. graph_modelfunction extended to includelmeandmerModmodels.
reghelper 0.3.0
NEW FEATURES
betafunction extended to includelmeandmerModmodels.build_modelfunction extended to includeaovandglmmodels.cell_meansfunction extended to includeglmmodels.graph_modelfunction extended to includeaovandglmmodels.sig_regionsfunction extended to includeglmmodels.
reghelper 0.2.0
MAJOR CHANGES
- Changed
block_lmfunction name tobuild_model.
NEW FEATURES
- Added examples to documentation for all functions.
betafunction extended to includeglmmodels.cell_meansfunction extended to includeaovmodels.ICCfunction extended to includemerModmodels (from “lme4” package).simple_slopesfunction extended to includeaov,glm,lme, andmerModmodels.simple_slopesnow includesprintfunction to include significance stars.
BUG FIXES
- Fixed bug with passing variables names to
build_model,cell_means, andgraph_model. Resolves Issue #1.
reghelper 0.1.0
NEW FEATURES
betafunction calculates standardized beta coefficients.block_lmfunction allows variables to be added to a series of regression models sequentially (similar to SPSS).ICCfunction calculates the intra-class correlation for a multi-level model (lme only at this point).cell_meansfunction calculates the estimated means for a fitted model.graph_modelfunction graphs interactions at +/- 1 SD (uses ggplot2 package).simple_slopesfunction calculates the simple effects of an interaction.sig_regionsfunction calculate the Johnson-Neyman regions of significance for an interaction.