## preview of the data
data(wildfire)
head(wildfire, 10)
summary(wildfire)
if (FALSE) {
require(ggplot2)
## visualizing the data by month
ggplot(wildfire, aes(x = month, y = Burnt_Area, color = month)) +
geom_point(size = 3) +
xlab("Month") +
ylab("Burnt Area (ha)") +
theme_minimal()
}
Run the code above in your browser using DataLab