powered by
This tool creates a line plot that compares the predicted variance of data to its actual variance.
VarGS.plot( qt, v_score, bins = 10, xlab = "Predicted variance", ylab = "Variance", title = "" )
A plot comparing predicted variance to actual variance.
A numeric vector.
An integer.
A string.
n_val <- 100000L v_vec <- exp(rnorm(n_val, 0, 0.1)) qt_vec <- stats::rnorm(n_val, 0, sqrt(v_vec)) VarGS.plot(qt_vec, v_vec)
Run the code above in your browser using DataLab