yXm: Prepare design matrix for balanced two way layout

Description Usage Arguments Value Author(s) References Examples

View source: R/yXm.R

Description

Prepares design matrix for balanced two way classified data and response vector in corresponding order.

Usage

1
yXm(response, treatments, blocks)

Arguments

response

Response vector as provided (numeric).

treatments

Vector of treatment levels as provided (either numeric or character).

blocks

Vector of block levels as provided (either numeric or character).

Value

Returns a list with following components.

X

A binary matrix with number of rows equal to length of response and number of columns equal to the total number of levels of treatments and blocks plus one. Each row has exactly three 1s: in the first position and in the two positions representing the treatment and block levels.

y

Numeric vector of response values, permuted to correspond with the rows of X.

Author(s)

Debasis Sengupta <shairiksengupta@gmail.com>, Jinwen Qiu <qjwsnow_ctw@hotmail.com>

References

Sengupta and Jammalamadaka (2019), Linear Models and Regression with R: An Integrated Approach.

Examples

1
2
data(poison)
yXm(poison$Survtime,poison$Treatment,poison$Poison)

lmreg documentation built on May 2, 2019, 9:29 a.m.

Related to yXm in lmreg...