print.starnet: Print Values

View source: R/functions.R

print.starnetR Documentation

Print Values

Description

Prints object of class starnet.

Usage

## S3 method for class 'starnet'
print(x, ...)

Arguments

x

starnet object

...

further arguments (not applicable)

Value

Prints "stacked gaussian/binomial/poisson elastic net".

Examples



set.seed(1)
n <- 50; p <- 100
y <- rnorm(n=n)
X <- matrix(rnorm(n*p),nrow=n,ncol=p)
object <- starnet(y=y,X=X)
print(object)


starnet documentation built on June 10, 2025, 5:13 p.m.