get_prmNlme | R Documentation |
Access model parameter estimates from an xpdb object generated by xposeNlme.
get_prmNlme(
xpdb,
.problem = 1,
.subprob = 0,
.method = NULL,
digits = 6,
show_all = FALSE,
level = 0.95
)
xpdb |
An |
.problem |
The problem to be used. |
.subprob |
The subproblem to be used. |
.method |
The estimation method to be used. |
digits |
Integer specifying the number of significant digits to be displayed. |
show_all |
Logical specifying whether the 0 off-diagonal omega elements should be removed from the output or not. |
level |
Numeric specifying confidence level to compute confidence intervals, which are calculated based on Student’s t distribution. |
A tibble for single problem/subproblem.
xposeNlme
# Store the parameter table
prm <- get_prmNlme(xpdb_ex_Nlme)
# Set the desired number of significant digits to display results
# Note: To have results displayed in the number of significant digits
# specified in the digits argument, one needs to make sure that
# the value of pillar.sigfig option (default value is 3) is greater
# than or equal to this specified value.
options(pillar.sigfig = 6)
get_prmNlme(xpdb_ex_Nlme, digits = 4)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.