plot.PanelData | R Documentation |
Create basic plots of PanelData objects
## S3 method for class 'PanelData'
plot(x, ..., plotting.variable = NA)
x |
|
... |
Not used |
plotting.variable |
character string specifying which variable to plot in the resulting figure. The values of this variable will be used to fill in cells on the resulting heatmap. Defaults to whatever is specified as the treatment variable. |
Returns a ggplot2 object created by geom_tile()
. The basic figure shows units along the y-axis and time along the x-axis. The figure takes the form of a heatmap. The value of the plotting.variable argument is used to fill in the color of the cells.
dem$rdata <- rnorm(nrow(dem))
d <- PanelData(dem, "wbcode2", "year", "dem", "y")
plot(d)
plot(d, plotting.variable = "rdata")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.