From cb47d2520ce15a56e596a9234f3c128e88824e1b Mon Sep 17 00:00:00 2001 From: Josh Yamamoto Date: Mon, 12 Feb 2024 10:15:23 -0600 Subject: [PATCH] editing examples and description wording --- DESCRIPTION | 4 ++-- R/saeczi.R | 4 +--- man/saeczi.Rd | 4 +--- 3 files changed, 4 insertions(+), 8 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index ebe32a6..5500bac 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -13,9 +13,9 @@ Authors@R: c(person("Josh", "Yamamoto", role = c("aut", "cre"), Maintainer: Josh Yamamoto Description: Simplifies the process of fitting a zero-inflated estimator onto a dataset. This estimator is a combination of a linear mixed effects regression model - and a logistic mixed effects regression model which is summarized by White et al (2024, ). + and a logistic mixed effects regression model which is summarized by White and others (2024, ). The variance is estimated through a parametric bootstrapping method which is given - by Chandra et al (2012, ). + by Chandra and others (2012, ). License: CC0 Encoding: UTF-8 LazyData: true diff --git a/R/saeczi.R b/R/saeczi.R index 187d9fb..4212dd5 100644 --- a/R/saeczi.R +++ b/R/saeczi.R @@ -46,9 +46,7 @@ #' lin_formula, #' log_formula = lin_formula, #' domain_level = "COUNTYFIPS", -#' mse_est = TRUE, -#' B = 5, -#' parallel = FALSE) +#' mse_est = FALSE) #' #' @export saeczi #' @import stats diff --git a/man/saeczi.Rd b/man/saeczi.Rd index 7503d36..0b9081b 100644 --- a/man/saeczi.Rd +++ b/man/saeczi.Rd @@ -71,8 +71,6 @@ result <- saeczi(samp, lin_formula, log_formula = lin_formula, domain_level = "COUNTYFIPS", - mse_est = TRUE, - B = 5, - parallel = FALSE) + mse_est = FALSE) }