plot.bsrr {bestridge} | R Documentation |
Produces a coefficient profile plot of the coefficient or loss function paths
Description
Produces a coefficient profile plot of the coefficient or loss function paths
Usage
## S3 method for class 'bsrr'
plot(
x,
type = c("tune", "coefficients"),
lambda = NULL,
sign.lambda = 0,
breaks = T,
K = NULL,
...
)
Arguments
x |
A |
type |
One of |
lambda |
For |
sign.lambda |
For |
breaks |
For |
K |
For |
... |
Other graphical parameters to plot |
Value
No return value, called for plots generation
Author(s)
Liyuan Hu, Kangkang Jiang, Yanhang Zhang, Jin Zhu, Canhong Wen and Xueqin Wang.
See Also
bsrr
.
Examples
# Generate simulated data
n <- 200
p <- 20
k <- 5
rho <- 0.4
seed <- 10
Tbeta <- rep(0, p)
Tbeta[1:k*floor(p/k):floor(p/k)] <- rep(1, k)
Data <- gen.data(n, p, k, rho, family = "gaussian", beta = Tbeta, seed = seed)
lambda.list <- exp(seq(log(5), log(0.1), length.out = 10))
lm.bsrr <- bsrr(Data$x, Data$y, method = "pgsection")
# generate plots
plot(lm.bsrr)