geeUni: geeUni: The coefficient of univariate gee (internal function)

View source: R/gee.R

geeUniR Documentation

geeUni: The coefficient of univariate gee (internal function)

Description

Extract the coefficients of univariate gee using geeglm function (geepack package).

Usage

geeUni(y, x, data, id.vec, family, cor.type = "exchangeable")

Arguments

y

Dependant variable

x

Independent variable

data

Data

id.vec

Vector of id (should be ordered)

family

Family: "gaussian", "binomial", "poisson", "quasipoisson", etc...

cor.type

Correlation structure, Default: 'exchangeable'

Details

DETAILS

Value

coefficient, standard error, p-value

Examples

library(geepack)
data(dietox)
dietox$Cu <- as.factor(dietox$Cu)
gee.uni <- geeUni("Weight", "Time",
  data = dietox, id.vec = dietox$Pig,
  family = "gaussian", cor.type = "exchangeable"
)

jinseob2kim/jstable documentation built on March 27, 2024, 12:45 a.m.