Learn R Programming

VARDetect (version 0.1.8)

plot_density: Function to plot the sparsity levels for estimated model parameters

Description

A function to plot lineplot for sparsity levels of estimated model parameters

Usage

plot_density(est_mats, threshold = 0.1)

Value

A plot for sparsity density across over all estimated segments

Arguments

est_mats

A list of numeric matrices, the length of list equals to the number of estimated segments

threshold

A numeric value, set as a threshold, the function only counts the non-zeros with absolute magnitudes larger than threshold

Examples

Run this code
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)

Run the code above in your browser using DataLab