print.rbounds: A simple print method for rbounds objects

Description Usage Arguments Value Examples

Description

A simple print method for rbounds objects

Usage

1
2
## S3 method for class 'rbounds'
print(m)

Arguments

m

A model fit by pidoutcomes

Value

By default we print the mean upper and lower bounds and CI's

Examples

1
2
3
4
5
6
7
8
9
#' N <- 1000
x <- rnorm(N)
e <- rnorm(N)
y <- as.numeric(2*x + e > 0)
z <- rbinom(N, 1, .75)
y_obs <- z*y
df <- data.frame(y_obs, x, z)
m1 <- pidoutcomes(y_obs ~ x, z, df)
m1

gabrielfgm/rbounds documentation built on May 8, 2019, 8:09 a.m.