Function to plot the sparsity levels for estimated model parameters
A function to plot lineplot for sparsity levels of estimated model parameters
plot_density(est_mats, threshold = 0.1)
est_mats
: A list of numeric matrices, the length of list equals to the number of estimated segmentsthreshold
: A numeric value, set as a threshold, the function only counts the non-zeros with absolute magnitudes larger than thresholdA plot for sparsity density across over all estimated segments
set.seed(1) est_mats <- list(matrix(rnorm(400, 0, 2), 20, 20), matrix(rnorm(400), 20, 20)) plot_density(est_mats, threshold = 0.25)
Useful links