R/plot.minLambda.R
plot.minLambda.Rd
The objective function \(G\) is plotted on a grid. The minimum is indicated with a white point.
# S3 method for minLambda plot(x, ...)
x | Output of function |
---|---|
... | Further graphical parameters can be passed. |
Plot of \(G\) on a grid.
When minimizing over 2 \(\lambda\)'s, one plot is generated: (\(\lambda_2\) vs \(\lambda_3\)). With 3 \(\lambda\)'s, 3 plots are generated: \(\lambda_2\) vs. \(\lambda_3\), \(\lambda_2\) vs. \(\lambda_4\) and \(\lambda_3\) vs. \(\lambda_4\).
set.seed(987) sampleData <- matrix(stats::rnorm(100), nrow = 10) sampleData[4:6, 6:8] <- sampleData[4:6, 6:8] + 5 # Minimization of two lambdas on a 20-by-20-grid minLamOut <- MinLambda(Xmu = c(sampleData), mm = 10, nn = 10, nGrid = 20, nLambda = 3) # Plot of the objective function plot(x = minLamOut)