View source: R/circGLMClassPlotFunctions.R
| plot.circGLM | R Documentation |
General plot function for circGLM objects, which dispatches the chosen
type of plotting to the corresponding function.
## S3 method for class 'circGLM' plot(x, type = "trace", ...)
x |
A |
type |
Character string giving the type of plotting. The options are
|
... |
Additional arguments to be passed to subsequent plot functions. |
plot_trace.circGLM,
plot_tracestack.circGLM, plot_predict.circGLM,
plot_meancompare.circGLM and
plot_meanboxplot.circGLM.
plot(circGLM(th = rvmc(10, 1, 1))) dat <- generateCircGLMData(n = 100, nconpred = 1, ncatpred = 1) m <- circGLM(th ~ ., dat, Q = 100, burnin = 0) # Traceplot by default plot(m) # Traceplot stack plot(m, type = "tracestack") # Prediction plot plot(m, type = "predict") # Mean comparisons plot(m, type = "meancompare") plot(m, type = "meanboxplot")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.