| btergm-class | R Documentation |
An S4 class to represent a fitted TERGM by bootstrapped MPLE.
Show the coefficients of a btergm object.
## S4 method for signature 'btergm'
show(object)
## S4 method for signature 'btergm'
coef(object, invlogit = FALSE, ...)
## S4 method for signature 'btergm'
nobs(object)
btergm.se(object, print = FALSE)
## S4 method for signature 'btergm'
confint(object, parm, level = 0.95, type = "perc", invlogit = FALSE, ...)
timesteps.btergm(object)
## S4 method for signature 'btergm'
summary(object, level = 0.95, type = "perc", invlogit = FALSE, ...)
object |
A |
invlogit |
Apply inverse logit transformation to the estimates and/or
confidence intervals? That is, |
... |
Further arguments to be passed through to the |
print |
Should the formatted coefficient table be printed to the R
console along with significance stars ( |
parm |
Parameters (specified by integer position or character string). |
level |
The significance level for computation of the confidence
intervals. The default is |
type |
Type of confidence interval, e.g., basic bootstrap interval
( |
btergm objects result from the estimation of a bootstrapped TERGM via
the btergm function. btergm objects contain the
coefficients, the bootstrapping samples of the coefficients, the number of
replications, the number of observations, the number of time steps, the
original formula, and the response, effects and weights objects that were fed
into the glm call for estimating the model.
coef(btergm): Return the coefficients of a btergm object.
nobs(btergm): Return the number of observations saved in a
btergm object.
btergm.se(): Create a coefficient table from a btergm
object
Create a coefficient matrix with standard errors and p-values.
This function can create a coefficient matrix with coefficients, standard
errors, z-scores, and p-values, based on a fitted btergm object.
If the argument print = TRUE is used, the matrix is printed to the R
console as a formatted coefficient matrix with significance stars instead.
Note that confidence intervals are the preferred way of interpretation for
bootstrapped TERGMs; standard errors are only accurate if the bootstrapped
data are normally distributed, which is not always the case. Various methods
for checking for normality for each model term are available, for example
quantile-quantile plots (e.g., qqnorm(x@boot$t[, 1]) for the first
model term in the btergm object called x).
confint(btergm): Return the confidence intervals for estimates in a
btergm object.
timesteps.btergm(): Return the number of time steps saved in a
btergm object.
summary(btergm): Summary of a fitted btergm object.
coefObject of class "numeric". The coefficients.
bootObject of class "matrix". The bootstrapping sample.
RObject of class "numeric". Number of replications.
nobsObject of class "numeric". Number of observations.
time.stepsObject of class "numeric". Number of time steps.
formulaObject of class "formula". The original model formula
(without indices for the time steps).
formula2The revised formula with the object references after applying
the tergmprepare function.
responseObject of class "integer". The response variable.
effectsObject of class "data.frame". The effects that went
into the glm call.
weightsObject of class "integer". The weights of the
observations.
auto.adjustObject of class "logical". Indicates whether
automatic adjustment of dimensions was done before estimation.
offsetObject of class "logical". Indicates whether an offset
matrix with structural zeros was used.
directedObject of class "logical". Are the dependent networks
directed?
bipartiteObject of class "logical". Are the dependent networks
bipartite?
nverticesNumber of vertices.
dataThe data after processing by the tergmprepare
function.
Other tergm-classes:
createBtergm(),
createMtergm(),
createTbergm(),
mtergm-class,
tbergm-class
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.