plot.qrglasso {QuantRegGLasso}R Documentation

Display BIC Results from qrglasso

Description

Visualize the HDIC BIC results corresponding to hyperparameters obtained from qrglasso.

Usage

## S3 method for class 'qrglasso'
plot(x, ...)

Arguments

x

An object of class qrglasso for the plot method.

...

Additional parameters not used directly.

Value

NULL

See Also

qrglasso

Examples

set.seed(123)
n <- 100
p <- 5
L <- 5
Y <- matrix(rnorm(n), n, 1)
W <- matrix(rnorm(n * p * (L - 1)), n, p * (L - 1))

# Call qrglasso with default parameters
result <- qrglasso(Y = Y, W = W, p = p)

# Visualize the BIC results
plot(result)


[Package QuantRegGLasso version 1.0.0 Index]