SMLE (version 0.3.1)

print.selection: Print a selection object from smle_select

Description

This function prints a summary of a selection object. In particular, it gives the selected features along with their re-fitted model coefficient. For reference, it also shows the values of the selection criterion used in selection for all candidate models.

Usage

# S3 method for selection
print(x, ...)

Arguments

x

Fitted "selection" object.

...

Other parameter to print.

Value

No return value, called for side effects.

Examples

Run this code
# NOT RUN {
Data<-Gen_Data(correlation="MA",family = "gaussian")
fit<-SMLE(Data$Y,Data$X,k=20,family = "gaussian")
E<-smle_select(fit)
print(E)

# }

Run the code above in your browser using DataCamp Workspace