acf.plot | R Documentation |
Function to create autocorrelation function plot to assess convergence
acf.plot(x, node, title = "Autocorrelation function")
x |
a |
node |
variable to be displayed on the plot |
title |
title of the plot, if specified |
A plot showing the autocorrelation for the selected node
Tao Ding Gianluca Baio
### Read and format the data (binary)
data = read.csv(url("https://gianluca.statistica.it/software/bmeta/Data-bin.csv"))
### List data for binary outcome
data.list <- list(y0=data$y0,y1=data$y1,n0=data$n0,n1=data$n1)
### generate output from bmeta
x <- bmeta(data=data.list,outcome="bin",model="std.dt",type="ran")
### generate autocorrelation function plot
acf.plot(x,"alpha[1]")
### generate autocorrelation function plot and specify the title
acf.plot(x,"alpha[1]",title="Autocorrelation plot")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.