manymome 0.1.12.4
New Features
- Added
delta_med()
for computing ΔMed (Delta_Med), an R2-like measure of indirect effect proposed by Liu, Yuan and Li (2023). Can form nonparametric bootstrap confidence interval for ΔMed. (0.1.12.1, 0.1.12.3) - Added support for paths with both latent and observed variables. (0.1.12.2, 0.1.12.4)
manymome 0.1.12
CRAN release: 2023-08-21
New Features
Can report standard errors (if requested)
- All major print methods of effects support printing standard errors (setting
se = TRUE
). They are simply the standard deviations of the bootstrap estimates (if bootstrap confidence intervals are requested) or simulated estimates (if Monte Carlo confidence intervals are requested). They should be interpreted with cautions because the sampling distribution of the effect estimates may not be symmetric. (0.1.11.2)
Miscellaneous
Customized
linters
. (0.1.11.1)Revised a test to accommodate a behavior of MKL when
MASS::mvrnorm()
is used to generate pseudo random numbers. (0.1.11.4)Finalized to 0.1.12. (0.1.12)
Bug Fixes
P-value were not computed when mathematical operations are conducted on effects using
+
and-
before version 0.1.11.2. This has been fixed. (0.1.11.2)merge_model_matrix()
failed if all variables in anlm()
output is already present in merged outputs. Fixed in 0.1.11.3. (0.1.11.3)cond_indirect()
did not hide the progress when Monte Carlo CIs were requested anddo_mc()
was called internally. Fixed. It now hides the progress ifprogress = TRUE
. (0.1.11.5)
manymome 0.1.10
CRAN release: 2023-06-08
New Features
Monte Carlo Confidence Intervals
- Added support for Monte Carlo confidence intervals. (0.1.9.3 to 0.1.9.4)
- Updated some vignettes for Monte Carlo confidence intervals. (0.1.9.5)
- Please refer to this article for an illustration on forming Monte Carlo confidence interval.
Multiple Imputation
- Added support for models fitted by
runMI()
orsem.mi()
from thesemTools
package using multiple imputation. (0.1.9.8-0.1.9.10) - Please refer to this article for an illustration on forming Monte Carlo confidence interval.
Can report p-value (if requested)
- Some print methods support printing asymmetric bootstrap p-values using the method presented in Asparouhov and Muthén (2021) if bootstrapping confidence interval is requested. By default, p-values are not printed. (0.1.9.7)
Report proportion of effect mediated
- Added
indirect_proportion()
and two methods for its output. (0.1.9.12)
Others
- Exported
get_prod()
and added an article on its workflow. (0.1.9.13). - Bootstrapping can handle the
fixed.x
argument aslavaan
does. (0.1.9.17)
Bug Fixes
- Fixed
factor2var()
to work (again) for a categorical variable with only two levels. (0.1.9.21)
Miscellaneous
- Updated badges in README.md. (0.1.9.1)
- Updated
pkgdown
site. (0.1.9.2) - Used a more reliable test for Monte Carlo CIs. (0.1.9.6)
- Updated the logo for readability. (0.1.9.6)
- Fixed an error in
pkgdown
site. (0.1.9.6) - Added progress bars to
do_mc()
. (0.1.9.11) - Added
print.mc_out()
, the print-method formc_out
-class objects. (0.1.9.14) - Updated vignettes with package name. (0.1.9.15)
- Fixed typos in NEWS.md. (0.1.9.15)
- Updated
pkgdown
GitHub action for using newer version of mermaid. (0.1.9.15) - Updated
pkgdown
website to use the new logo and color scheme. (0.1.9.16) - Modified more tests to accommodate a change in
lavaan
on handling random seed. (0.1.9.18) - No change to the main code. Added a few technical appendices as
pkgdown
articles, accessible through thepkgdown
website of the package. (0.1.9.19) - Updated the documentation of functions to state that they support
lavaan.mi
-class objects. (0.1.9.20)
manymome 0.1.6
CRAN release: 2022-11-06
New Features
Bootstrapping
- Added
lm2boot_out_parallel()
to do bootstrapping with the output oflm()
using parallel processing. This is the default whendo_boot()
is used on the outputs oflm()
. (0.1.4.4) - Added a print method for the output of
do_boot()
. (0.1.4.7)
Mediation
- Added
all_indirect_paths()
for identifying all indirect paths in a model. (0.1.4.5) - Added
many_indirect_effects()
for computing indirect effects for a list of paths. (0.1.4.5) - Added
total_indirect_effect()
for computing the total indirect effect between two variables. (0.1.4.5)
Bug Fixes
- Updated README.md with code for installing from CRAN. (0.1.4.1).
- Fixed a typo in README.md. (0.1.4.2)
- Fixed tests that should be done by
expect_equal
on numbers rather than on characters. No change in the functions. (0.1.4.3) - Noted in the vignettes that some new functions are not yet on the CRAN version and available in the GitHub version. (0.1.4.6)
- Fixed a bug in
merge_model_frame()
. (0.1.4.8)