Learn R Programming

JWileymisc (version 1.4.1)

R2: Calculate R2 Values

Description

Generic function to return variance explained (R2) estimates from various models. In some cases these will be true R2 values, in other cases they may be pseudo-R2 values if R2 is not strictly defined for a model.

Usage

R2(object, ...)

# S3 method for lm R2(object, ...)

Value

Depends on the method dispatch.

The raw and adjusted r-squared value.

Arguments

object

A fitted model object.

...

Additional arguments passed to specific methods.

Examples

Run this code
R2(lm(mpg ~ qsec * hp, data = mtcars))

Run the code above in your browser using DataLab