plot.PanelData: Create basic plots of PanelData objects

View source: R/PanelData.R

plot.PanelDataR Documentation

Create basic plots of PanelData objects

Description

Create basic plots of PanelData objects

Usage

## S3 method for class 'PanelData'
plot(x, ..., plotting.variable = NA)

Arguments

x

PanelData object

...

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.

Value

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.

Examples

dem$rdata <- rnorm(nrow(dem))
d <- PanelData(dem, "wbcode2", "year", "dem", "y")
plot(d)
plot(d, plotting.variable = "rdata")

PanelMatch documentation built on April 3, 2025, 6:34 p.m.