diff --git a/DESCRIPTION b/DESCRIPTION index 18b4101..48f1714 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: BIFIEsurvey Type: Package Title: Tools for Survey Statistics in Educational Assessment -Version: 3.5-3 -Date: 2022-04-05 11:45:31 +Version: 3.6-2 +Date: 2024-02-18 19:47:04 Author: BIFIE [aut], Alexander Robitzsch [aut, cre], Konrad Oberwimmer [aut] Maintainer: Alexander Robitzsch @@ -29,7 +29,7 @@ Depends: Imports: methods, miceadds, Rcpp, stats, utils Suggests: - graphics, grDevices, lavaan, lavaan.survey, mitools, survey, TAM + graphics, grDevices, lavaan, mitools, survey, TAM Enhances: Hmisc, intsvy, LSAmitR LinkingTo: @@ -37,4 +37,4 @@ LinkingTo: License: GPL (>= 2) URL: https://github.com/alexanderrobitzsch/BIFIEsurvey, - https://sites.google.com/site/alexanderrobitzsch2/software + https://sites.google.com/view/alexander-robitzsch/software diff --git a/R/BIFIE.by.R b/R/BIFIE.by.R index 124e397..f5ad814 100644 --- a/R/BIFIE.by.R +++ b/R/BIFIE.by.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.by.R -## File Version: 1.56 +## File Version: 1.571 ####################################################################### @@ -131,5 +131,5 @@ summary.BIFIE.by <- function( object, digits=4, ... ) BIFIE.summary(object) cat("Statistical Inference for User Defined Function \n") obji <- object$stat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.correl.R b/R/BIFIE.correl.R index 4b17ffd..e753c43 100644 --- a/R/BIFIE.correl.R +++ b/R/BIFIE.correl.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.correl.R -## File Version: 0.46 +## File Version: 0.471 ####################################################################### @@ -222,11 +222,12 @@ BIFIE.correl <- function( BIFIEobj, vars, group=NULL, group_values=NULL, se=TRUE #################################################################################### # summary for BIFIE.correl function -summary.BIFIE.correl <- function( object, digits=4, ... ){ +summary.BIFIE.correl <- function( object, digits=4, ... ) +{ BIFIE.summary(object) cat("Statistical Inference for Correlations \n") obji <- object$stat.cor - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) cat("\nCorrelation Matrices \n\n") obji <- object$cor_matrix GG <- object$GG @@ -234,5 +235,4 @@ summary.BIFIE.correl <- function( object, digits=4, ... ){ obji[[gg]] <- round( obji[[gg]], digits=digits) } print(obji) -# print.object.summary( obji, digits=digits ) - } +} diff --git a/R/BIFIE.crosstab.R b/R/BIFIE.crosstab.R index 1d2c05d..cecfcec 100644 --- a/R/BIFIE.crosstab.R +++ b/R/BIFIE.crosstab.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.crosstab.R -## File Version: 0.43 +## File Version: 0.441 ####################################################################### @@ -284,11 +284,11 @@ summary.BIFIE.crosstab <- function( object, digits=3, ... ) BIFIE.summary(object) cat("Joint and Conditional Probabilities\n") obji <- object$stat.probs - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) cat("\nMarginal Probabilities\n") obji <- object$stat.marg - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) cat("\nEffect Sizes\n") obji <- object$stat.es - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.derivedParameters.R b/R/BIFIE.derivedParameters.R index 5ce21c0..595785d 100644 --- a/R/BIFIE.derivedParameters.R +++ b/R/BIFIE.derivedParameters.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.derivedParameters.R -## File Version: 0.385 +## File Version: 0.386 #--- statistical inference for derived parameters @@ -112,7 +112,7 @@ summary.BIFIE.derivedParameters <- function( object, digits=4, ... ) } cat("\nStatistical Inference for Derived Parameters \n\n") obji <- object$stat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) #- Wald test cat("\n") diff --git a/R/BIFIE.ecdf.R b/R/BIFIE.ecdf.R index aefbedc..f7ebc06 100644 --- a/R/BIFIE.ecdf.R +++ b/R/BIFIE.ecdf.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.ecdf.R -## File Version: 0.34 +## File Version: 0.36 ####################################################################### @@ -106,5 +106,5 @@ summary.BIFIE.ecdf <- function( object, digits=4, ... ) BIFIE.summary(object) cat("Empirical Distribution Function \n") obji <- object$ecdf - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.freq.R b/R/BIFIE.freq.R index 3a0381a..c36abcb 100644 --- a/R/BIFIE.freq.R +++ b/R/BIFIE.freq.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.freq.R -## File Version: 0.52 +## File Version: 0.531 ####################################################################### @@ -158,9 +158,10 @@ BIFIE.freq <- function( BIFIEobj, vars, group=NULL, group_values=NULL, se=TRUE ) #################################################################################### # summary for BIFIE.freq function -summary.BIFIE.freq <- function( object, digits=3, ... ){ +summary.BIFIE.freq <- function( object, digits=3, ... ) +{ BIFIE.summary(object) cat("Relative Frequencies \n") obji <- object$stat - print.object.summary( obji, digits=digits ) - } + print_object_summary( obji, digits=digits ) +} diff --git a/R/BIFIE.linreg.R b/R/BIFIE.linreg.R index 5ab962d..fd31655 100644 --- a/R/BIFIE.linreg.R +++ b/R/BIFIE.linreg.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.linreg.R -## File Version: 0.584 +## File Version: 0.586 #--- Linear regression @@ -142,5 +142,5 @@ summary.BIFIE.linreg <- function( object, digits=4, ... ) BIFIE.summary(object) cat("Statistical Inference for Linear Regression \n\n") obji <- object$stat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.logistreg.R b/R/BIFIE.logistreg.R index 69fd2eb..0ca9dcd 100644 --- a/R/BIFIE.logistreg.R +++ b/R/BIFIE.logistreg.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.logistreg.R -## File Version: 0.434 +## File Version: 0.435 #-- logistic regression @@ -137,5 +137,5 @@ summary.BIFIE.logistreg <- function( object, digits=4, ... ) BIFIE.summary(object) cat("Statistical Inference for Logistic Regression \n") obji <- object$stat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.mva.R b/R/BIFIE.mva.R index 6229103..85ee832 100644 --- a/R/BIFIE.mva.R +++ b/R/BIFIE.mva.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.mva.R -## File Version: 0.32 +## File Version: 0.331 ####################################################################### @@ -154,5 +154,5 @@ summary.BIFIE.mva <- function( object, digits=4, ... ) BIFIE.summary(object) cat("Missing Value Analysis \n") obji <- object$stat.mva - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.pathmodel.R b/R/BIFIE.pathmodel.R index 654ac1e..5a4bcdd 100644 --- a/R/BIFIE.pathmodel.R +++ b/R/BIFIE.pathmodel.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.pathmodel.R -## File Version: 1.319 +## File Version: 1.321 #--- path model @@ -281,5 +281,5 @@ summary.BIFIE.pathmodel <- function( object, digits=4, ... ) # estimated parameters cat("Statistical Inference for Path Model \n\n") obji <- object$stat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.twolevelreg.R b/R/BIFIE.twolevelreg.R index fd038a3..f68d829 100644 --- a/R/BIFIE.twolevelreg.R +++ b/R/BIFIE.twolevelreg.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.twolevelreg.R -## File Version: 0.581 +## File Version: 0.583 #--- BIFIE.twolevelreg BIFIE.twolevelreg <- function( BIFIEobj, dep, formula.fixed, formula.random, @@ -264,5 +264,5 @@ summary.BIFIE.twolevelreg <- function( object, digits=4, ... ) cat("Statistical Inference for Two-Level Linear Regression \n\n") obji <- object$stat rownames(obji) <- NULL - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.univar.R b/R/BIFIE.univar.R index 2903e00..bc977df 100644 --- a/R/BIFIE.univar.R +++ b/R/BIFIE.univar.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.univar.R -## File Version: 1.842 +## File Version: 1.844 #--- univariate statistics @@ -228,8 +228,8 @@ summary.BIFIE.univar <- function( object, digits=3, ... ) BIFIE.summary(object) cat("Univariate Statistics | Means\n") obji <- object$stat_M - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) cat("\nUnivariate Statistics | Standard Deviations\n") obji <- object$stat_SD - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE.univar.test.R b/R/BIFIE.univar.test.R index 896475c..8fd4230 100644 --- a/R/BIFIE.univar.test.R +++ b/R/BIFIE.univar.test.R @@ -1,5 +1,5 @@ ## File Name: BIFIE.univar.test.R -## File Version: 0.46 +## File Version: 0.471 ####################################################################### @@ -178,12 +178,12 @@ summary.BIFIE.univar.test <- function( object, digits=4, ... ) if ( object$wald_test ){ cat("F Test (ANOVA) \n") obji <- object$stat.F - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } cat("\nEta Squared \n") obji <- object$stat.eta - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) cat("\nCohen's d Statistic \n") obji <- object$stat.dstat - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/BIFIE_lavaan_survey_lavaan_survey.R b/R/BIFIE_lavaan_survey_lavaan_survey.R index 6d6abe8..49d553b 100644 --- a/R/BIFIE_lavaan_survey_lavaan_survey.R +++ b/R/BIFIE_lavaan_survey_lavaan_survey.R @@ -1,10 +1,10 @@ ## File Name: BIFIE_lavaan_survey_lavaan_survey.R -## File Version: 0.05 +## File Version: 0.078 BIFIE_lavaan_survey_lavaan_survey <- function(lavaan.fit, survey.design, ...) { - requireNamespace("lavaan.survey") - res <- lavaan.survey::lavaan.survey(lavaan.fit=lavaan.fit, - survey.design=survey.design, ...) + args <- c(as.list(environment()), list(...)) + do.call(what=requireNamespace, args=list(package="lavaan.survey")) + res <- do.call(what="lavaan.survey", args=args) return(res) } diff --git a/R/BIFIE_waldtest_summary_print_test_statistics.R b/R/BIFIE_waldtest_summary_print_test_statistics.R index ede8980..9f85906 100644 --- a/R/BIFIE_waldtest_summary_print_test_statistics.R +++ b/R/BIFIE_waldtest_summary_print_test_statistics.R @@ -1,11 +1,11 @@ ## File Name: BIFIE_waldtest_summary_print_test_statistics.R -## File Version: 0.04 +## File Version: 0.051 BIFIE_waldtest_summary_print_test_statistics <- function(object, digits, value_name="stat.D") { if ( ! object$NMI ){ cat("D1 and D2 Statistic for Wald Test \n\n") } - if ( object$NMI ){ cat("D1 Statistic for Wald Test \n\n") } + if ( object$NMI ){ cat("D1 Statistic for Wald Test \n\n") } obji <- object[[ value_name ]] - print.object.summary( obji, digits=digits ) + print_object_summary( obji, digits=digits ) } diff --git a/R/RcppExports.R b/R/RcppExports.R index 1e6561f..b9ec7ae 100644 --- a/R/RcppExports.R +++ b/R/RcppExports.R @@ -1,5 +1,5 @@ ## File Name: RcppExports.R -## File Version: 3.005003 +## File Version: 3.006002 # Generated by using Rcpp::compileAttributes() -> do not edit by hand # Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393 diff --git a/R/print.object.summary.R b/R/print_object_summary.R similarity index 67% rename from R/print.object.summary.R rename to R/print_object_summary.R index fef81d7..39511ca 100644 --- a/R/print.object.summary.R +++ b/R/print_object_summary.R @@ -1,7 +1,7 @@ -## File Name: print.object.summary.R -## File Version: 0.13 +## File Name: print_object_summary.R +## File Version: 0.161 -print.object.summary <- function( obji, digits ) +print_object_summary <- function( obji, digits) { V <- ncol(obji) for (vv in 1L:V){ diff --git a/R/vcov.BIFIE.survey.R b/R/vcov_BIFIE.survey.R similarity index 73% rename from R/vcov.BIFIE.survey.R rename to R/vcov_BIFIE.survey.R index b240c3e..e4dc155 100644 --- a/R/vcov.BIFIE.survey.R +++ b/R/vcov_BIFIE.survey.R @@ -1,9 +1,9 @@ -## File Name: vcov.BIFIE.survey.R -## File Version: 0.294 +## File Name: vcov_BIFIE.survey.R +## File Version: 0.297 -#--- vcov.BIFIEsurvey -vcov.BIFIEsurvey <- function( object, type=NULL, eps=1E-10, avoid.singul=FALSE ) +#--- vcov_BIFIEsurvey +vcov_BIFIEsurvey <- function( object, type=NULL, eps=1E-10, avoid.singul=FALSE ) { # extract replicated parameters parsres <- extract.replicated.pars( BIFIE.method=object, type=type ) @@ -46,49 +46,49 @@ vcov.BIFIEsurvey <- function( object, type=NULL, eps=1E-10, avoid.singul=FALSE ) vcov.BIFIE.correl <- function( object, type=NULL, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=type, ... ) + pars <- vcov_BIFIEsurvey( object=object, type=type, ... ) return(pars) } # further BIFIE functions vcov.BIFIE.by <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ...) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ...) return(pars) } vcov.BIFIE.derivedParameters <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ... ) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ... ) return(pars) } vcov.BIFIE.crosstab <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ... ) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ... ) return(pars) } vcov.BIFIE.freq <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ...) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ...) return(pars) } vcov.BIFIE.linreg <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ... ) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ... ) return(pars) } vcov.BIFIE.logistreg <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ...) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ...) return(pars) } vcov.BIFIE.univar <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ...) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ...) return(pars) } vcov.BIFIE.twolevelreg <- function( object, ... ) { if (object$se){ - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ... ) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ... ) } else { pars <- vcov( object$micombs ) } @@ -96,7 +96,7 @@ vcov.BIFIE.twolevelreg <- function( object, ... ) } vcov.BIFIE.pathmodel <- function( object, ... ) { - pars <- vcov.BIFIEsurvey( object=object, type=NULL, ...) + pars <- vcov_BIFIEsurvey( object=object, type=NULL, ...) return(pars) } diff --git a/README.md b/README.md index eb8a150..db56e1a 100644 --- a/README.md +++ b/README.md @@ -3,12 +3,16 @@ If you use `BIFIEsurvey` and have suggestions for improvement or have found bugs, please email me at robitzsch@leibniz-ipn.de. +Please always provide a minimal dataset, necessary to demonstrate the problem, +a minimal runnable code necessary to reproduce the issue, which can be run on the given dataset, and +all necessary information on the used librarys, the R version, and the OS it is run on, perhaps a sessionInfo(). + #### Manual The manual may be found here [https://alexanderrobitzsch.github.io/BIFIEsurvey/](https://alexanderrobitzsch.github.io/BIFIEsurvey/) -#### CRAN version `BIFIEsurvey` 3.4-15 (2022-04-04) +#### CRAN version `BIFIEsurvey` 3.5-19 (2024-02-18) [![CRAN_Status_Badge](http://www.r-pkg.org/badges/version-last-release/BIFIEsurvey)](https://cran.r-project.org/package=BIFIEsurvey) @@ -22,9 +26,9 @@ The CRAN version can be installed from within R using: utils::install.packages("BIFIEsurvey") ``` -#### GitHub version `BIFIEsurvey` 3.5-3 (2022-04-05) +#### GitHub version `BIFIEsurvey` 3.6-2 (2024-02-18) -[![](https://img.shields.io/badge/github%20version-3.5--3-orange.svg)](https://github.com/alexanderrobitzsch/BIFIEsurvey)   +[![](https://img.shields.io/badge/github%20version-3.6--2-orange.svg)](https://github.com/alexanderrobitzsch/BIFIEsurvey)   The version hosted [here](https://github.com/alexanderrobitzsch/BIFIEsurvey) is the development version of `BIFIEsurvey`. The GitHub version can be installed using `devtools` as: diff --git a/inst/CITATION b/inst/CITATION index 26656b2..20a1573 100644 --- a/inst/CITATION +++ b/inst/CITATION @@ -3,9 +3,9 @@ citHeader("To cite the 'BIFIEsurvey' package in publications use:") year <- sub(".*(2[[:digit:]]{3})-.*", "\\1", meta$Date, perl = TRUE) vers <- paste("R package version", meta$Version) -citEntry(entry="Manual", +bibentry(bibtype="Manual", title = "BIFIEsurvey: Tools for survey statistics in educational assessment", - author = personList( as.person("BIFIE"), + author = c( as.person("BIFIE"), person(given = "Alexander", family = "Robitzsch"), person(given = "Konrad", family = "Oberwimmer") ), diff --git a/inst/NEWS b/inst/NEWS index 63f9bcc..383b2ea 100644 --- a/inst/NEWS +++ b/inst/NEWS @@ -52,16 +52,25 @@ CHANGELOG BIFIEsurvey -------------------------------------------------------------------------- -VERSIONS BIFIEsurvey 3.5 | 2022-04-05 | Last: BIFIEsurvey 3.5-3 +VERSIONS BIFIEsurvey 3.6 | 2024-02-18 | Last: BIFIEsurvey 3.6-2 -------------------------------------------------------------------------- xxx * --- + DATA * --- EXAMP * --- +-------------------------------------------------------------------------- +VERSIONS BIFIEsurvey 3.5 | 2024-02-18 | Last: BIFIEsurvey 3.5-19 +-------------------------------------------------------------------------- + +FIXED * removed links to lavaan.survey package in the manual due to a CRAN + request. The lavaan.survey has been removed from CRAN. +DATA * --- +EXAMP * --- -------------------------------------------------------------------------- VERSIONS BIFIEsurvey 3.4 | 2022-04-04 | Last: BIFIEsurvey 3.4-15 diff --git a/man/BIFIE.lavaan.survey.Rd b/man/BIFIE.lavaan.survey.Rd index cb5a309..8d7af8c 100644 --- a/man/BIFIE.lavaan.survey.Rd +++ b/man/BIFIE.lavaan.survey.Rd @@ -1,5 +1,5 @@ %% File Name: BIFIE.lavaan.survey.Rd -%% File Version: 0.211 +%% File Version: 0.215 \name{BIFIE.lavaan.survey} \alias{BIFIE.lavaan.survey} @@ -19,7 +19,7 @@ Fitting a Model in \pkg{lavaan} or in \pkg{survey} \description{ The function \code{BIFIE.lavaan.survey} fits a structural equation model in \pkg{lavaan} -using the \pkg{lavaan.survey} package. Currently, only +using the \bold{lavaan.survey} package (currently not on CRAN). Currently, only maximum likelihood estimation for normally distributed data is available. The function \code{BIFIE.survey} fits a model defined in the \pkg{survey} package. @@ -56,7 +56,7 @@ object from \pkg{survey} package (generated by \code{\link{BIFIEdata2svrepdesign \item{lavaan_fun}{Estimation funcion in \pkg{lavaan}. Can be \code{"lavaan"}, \code{"sem"}, \code{"cfa"} or \code{"growth"}. } -\item{lavaan_survey_default}{Logical indicating whether the \pkg{lavaan.survey} +\item{lavaan_survey_default}{Logical indicating whether the \bold{lavaan.survey} package should be used for statistical inference for multiply imputed datasets. } \item{object}{Object of class \code{BIFIE.by}} @@ -95,7 +95,7 @@ For \code{BIFIE.lavaan.survey} a list with following entries \seealso{ \code{\link[lavaan:lavaan]{lavaan::lavaan}}, -\code{\link[lavaan.survey:lavaan.survey]{lavaan.survey::lavaan.survey}} +\code{lavaan.survey::lavaan.survey} } diff --git a/man/BIFIE.pathmodel.Rd b/man/BIFIE.pathmodel.Rd index 050b7ef..5a7848e 100644 --- a/man/BIFIE.pathmodel.Rd +++ b/man/BIFIE.pathmodel.Rd @@ -1,5 +1,5 @@ %% File Name: BIFIE.pathmodel.Rd -%% File Version: 0.21 +%% File Version: 0.224 \name{BIFIE.pathmodel} \alias{BIFIE.pathmodel} @@ -106,7 +106,7 @@ Buonaccorsi, J. P. (2010). %% ~Make other sections like Warning with \section{Warning }{....} ~ \seealso{ -See the \pkg{lavaan} and \pkg{lavaan.survey} package. +See the \pkg{lavaan} and \bold{lavaan.survey} package. For the \code{lavaan} syntax, see \code{\link[lavaan:lavaanify]{lavaan::lavaanify}} and diff --git a/man/BIFIEsurvey-package.Rd b/man/BIFIEsurvey-package.Rd index b12c9ab..c2fe105 100644 --- a/man/BIFIEsurvey-package.Rd +++ b/man/BIFIEsurvey-package.Rd @@ -1,5 +1,5 @@ %% File Name: BIFIEsurvey-package.Rd -%% File Version: 1.021 +%% File Version: 1.025 \name{BIFIEsurvey-package} \alias{BIFIEsurvey-package} @@ -100,7 +100,7 @@ Shao, J. (1996). Invited discussion paper: Resampling methods in sample surveys. \keyword{package} \seealso{ See also the \pkg{survey}, \pkg{intsvy}, \pkg{EdSurvey}, -\pkg{lavaan.survey}, \pkg{EVER} and +\bold{lavaan.survey}, \pkg{EVER} and the \pkg{eatRep} packages. } diff --git a/src/RcppExports.cpp b/src/RcppExports.cpp index 8ad8439..d8508aa 100644 --- a/src/RcppExports.cpp +++ b/src/RcppExports.cpp @@ -1,5 +1,5 @@ //// File Name: RcppExports.cpp -//// File Version: 3.005003 +//// File Version: 3.006002 // Generated by using Rcpp::compileAttributes() -> do not edit by hand // Generator token: 10BE3573-1514-4C36-9D1C-5A225CD40393