Releases: ejolly/pymer4
Releases · ejolly/pymer4
0.8.2
v0.8.1
Compatibility Updates
- This version includes a
noarch
build that should be installable on arm-based macOS platforms (e.g. M1, M2, etc) - This version drops support for Python 3.7 and adds support for 3.9-3.11
Breaking changes
- This version also uses
joblib
for model saving and loading and drops supported hdf5 files previously handled with thedeepdish
library as it is no longer actively maintained. This means that 0.8.1 will not be able to load models saved with earlier versions ofpymer4
!
Fixes
v0.8.0
This is a minor release that adds supporting for logistic Lm
models, likelihood ratio tests for Lmer
models, fixes numerous bugs.
See the full changelog here
If you have trouble installing from conda or a pre-built conda package is not available you can install using pip by first creating a new conda environment:
conda create -n pymer4 python=3.8 'r-lmerTest' 'r-emmeans' rpy2 -c conda-forge
conda activate pymer4
pip install -r requirements.txt
pip install .
v0.7.8
- Maintenance release that pins
rpy2 >= 3.4.5,< 3.5.1
due to R -> Python dataframe conversion issue on recent rpy2 versions that causes a recursion error. - Pending code changes to support
rpy2 >= 3.5.1
are tracked on this development branch. Upcoming releases will drop support forrpy2 < 3.5.X
- Clearer error message when making circular predictions using
Lmer
models
v0.7.7
v0.7.6
Bug fixes:
- fixes an issue in which a Lmer model fit using categorical predictors would be unable to use .predict or would return fitted values instead of predictions on new data. Thanks to Mario Leaonardo Salinas for discovering this issue
Behind-the-scenes
- All conda packages for this release make use of the Intel MKL libraries which may result in slight estimate differences and fit times. While this was likely already happening before, it has been made explicit in this release, but is subject to change in the future.
- All conda packages also install
R<4.1.1
which has some new functionality regarding namespaces that are not yet compatible withpymer4
v0.7.5
v0.7.4
This version drops support for Python 3.6 and adds support for Python 3.9
- patch to address #85
- New
pymer4.utils.result_to_table
function for nicely formatting a fitted model's.coefs
attribute- docstring also includes some instructions on how to use this in conjunction with the gspread-pandas library for "exporting" model results to a google sheet