fix: get_rcenv now actually returns the environment
continuous-integration/drone/push Build is passing Details

When making it able to handle an arbitrary amount of environments, I
forgot to actually make it return the output.
This commit is contained in:
Brian Albert Monroe 2021-03-31 10:32:37 +02:00
parent 5d342814d9
commit 7b05b54c38
Signed by: bam
GPG Key ID: ACB52939BF87F222
2 changed files with 2 additions and 1 deletions

View File

@ -1,6 +1,6 @@
Package: rcest
Title: Helper package for conducting optimization, particularly maximum likelihood.
Version: 0.11.0
Version: 0.11.1
Authors@R: person("Brian", "Monroe", email = "brian@bamonroe.com", role = c("aut", "cre"))
Description: This package provides functions to estimate parameters of "function types" (ftypes), and a variety of helper functions to handle output. These functions allow for parameters to easily be made into linear functions of observable covariates, clustering standard errors around a variable, and delta method functions to do non-linear wald tests.
Depends:

View File

@ -12,6 +12,7 @@ get_rcenv <- function() {
get(paste0(env, "_env"), envir = top_env)
})
names(out) <- envs
out
}
#' @title Set the set of internal environments