inst/tests/blrm-contrast.r

require(rmsb)
n <- 1000
set.seed(8)
y <- sample(1:5, n, prob=c(.1, .2, .35, .35, .05), replace=TRUE)
table(y)
mean(y)
x <- sample(0:1, n, replace=TRUE)
means <- tapply(y, x, mean)
means
dd <- datadist(x); options(datadist='dd')
f <- orm(y ~ x)
M <- Mean(f)
M
lp <- Predict(f)
lp
lp <- lp$yhat
lp
M(lp)
means

g <- blrm(y ~ x)
M <- Mean(g)
g
k <- contrast(g, list(x=1), list(x=0), fun=M)
k
plot(k)

# Y is too discrete for quantiles here but do the median anyway
qu <- Quantile(g)
med <- function(lp, intercepts) qu(0.5, lp, intercepts=intercepts)
contrast(g, list(x=1), list(x=0), fun=med)

Try the rmsb package in your browser

Any scripts or data that you put into this service are public.

rmsb documentation built on Sept. 26, 2023, 5:11 p.m.