-
Notifications
You must be signed in to change notification settings - Fork 8
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
StudCIaddition #23
base: master
Are you sure you want to change the base?
StudCIaddition #23
Conversation
…ce estimations yet
…arest() calling .f(). (Intercept) parentheses cause extra dots in the var name.
Sorry that this took me so long to get to, summer has been far busier than anticipated. It looks like you are thinking about this approach only for the standard coefficient and variance component estimates. Is that correct? |
Hi @aloy, No problem, I have also been busy with other tasks. Yes, with extra place holder for nested bootsrapping for any other statistic as well. To my understanding, the calculation of the studentized CIs require the statistic of interest, its variance, and the distributions of the replicates and their variances. The argument As an extra feature, I prepared the option also for the nested bootstrapping ( |
Here is the first part of the studentized-CI implementation. The bootstrap.merMod has an option to acquire the needed variances. Try using varest argument with “no” (default), “analyticalf” (obtains variances from vcov matrix), or “nestboot” (not implemented yet, only placeholder). The “analyticalf” works with .f() returning named nums or dataframes. The variances appear in the replicates of the result. The calculation of the confidence intervals themselves are not included yet.