| plot_seaice | R Documentation | 
Plots the Sea Ice Index data retrieved using get_seaice() with ggplot2. The output ggplot2 object may be further modified.
plot_seaice(dataset = get_seaice(), title = "Arctic Sea Ice", print = TRUE)
dataset | 
 Name of the tibble generated by   | 
title | 
 chart title, defaults to Arctic Sea Ice  | 
print | 
 (boolean) Display sea ice ggplot2 chart, defaults to TRUE. Use FALSE to not display chart.  | 
plot_seaice invisibly returns a ggplot2 object with a pre-defined Sea Ice Index chart using data from get_seaice.
By default the chart is also displayed. Users may further modify the output ggplot2 chart.
Invisibly returns a ggplot2 object with Sea Ice Index chart
Hernando Cortina, hch@alum.mit.edu
# Fetch sea ice data:
seaice <- get_seaice()
#
# Plot output using package's built-in ggplot2 defaults
plot_seaice(seaice)
# Or just call plot_seaice(), which defaults to get_seaice() dataset
plot_seaice()
p <- plot_seaice(seaice, print = FALSE)
# Modify plot such as: p + ggplot2::labs(title='Shrinking Arctic Sea Ice') 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.