rddtools (version 0.4.0)

as.lm: Convert a rdd object to lm

Description

Convert a rdd object to lm

Usage

as.lm(x)

Arguments

x
An object to convert to lm

Value

An object of class lm

See Also

as.npreg which converts rdd_reg objects into npreg from package np.

Examples

Run this code
data(house)
house_rdd <- rdd_data(y=house$y, x=house$x, cutpoint=0)
reg_para <- rdd_reg_lm(rdd_object=house_rdd)
reg_para_lm <- as.lm(reg_para)
reg_para_lm
plot(reg_para_lm, which=4)

Run the code above in your browser using DataLab