Learn R Programming

AirScreen (version 0.1.0)

summary.AirResult: Summarise an AirResult Object

Description

Produces a compact, human-readable summary of the ranking results returned by Air.

Usage

# S3 method for AirResult
summary(object, ...)

Value

Invisibly returns object. The function is invoked for its printing side-effect.

Arguments

object

An object of class "AirResult".

...

Additional arguments (ignored; included for S3 compatibility).

Examples

Run this code
set.seed(314)
X <- matrix(rnorm(500), 50, 100)
y <- X[, 1] - 2*X[, 3] + rnorm(50)
res <- Air(X, y, penalty_type = "both")
summary(res)

Run the code above in your browser using DataLab