reg {NetworkToolbox} | R Documentation |
Regression Matrix
Description
Computes regression such that one variable is regressed over all other variables
Usage
reg(
data,
family = c("binomial", "gaussian", "Gamma", "poisson"),
symmetric = TRUE
)
Arguments
data |
A dataset |
family |
Error distribution to be used in the regression model.
Defaults to |
symmetric |
Should matrix be symmetric?
Defaults to |
Value
A matrix of fully regressed coefficients where one variable is regressed over all others
Author(s)
Alexander Christensen <alexpaulchristensen@gmail.com>
Examples
#binarize responses
psyb <- ifelse(neoOpen>=4, 1, 0)
#perform logistic regression
mat <- reg(psyb)
[Package NetworkToolbox version 1.4.2 Index]