Learn R Programming

trafo (version 1.0.1)

reciprocal: Reciprocal transformation for linear models

Description

The function transforms the dependent variable of a linear model using the Reciprocal transformation.

Usage

reciprocal(object)

Arguments

object

an object of type lm.

Value

An object of class trafo. Methods such as as.data.frame.trafo and print.trafo can be used for this class.

Examples

Run this code
# NOT RUN {
# Load data
data("cars", package = "datasets")

# Fit linear model
lm_cars <- lm(dist ~ speed, data = cars)

# Transform dependent variable 
reciprocal(object = lm_cars)
# }

Run the code above in your browser using DataLab