--- title: "Palmer Penguins" author: "Your Name" format: dashboard: orientation: columns logo: https://allisonhorst.github.io/palmerpenguins/logo.png nav-buttons: - text: "Data Source" href: https://allisonhorst.github.io/palmerpenguins/ --- ```{r setup, include=FALSE} library(palmerpenguins) library(ggthemes) library(tidyverse) library(plotly) library(leaflet) library(DT) ``` # Graphs ## Column {width=65%} ```{r} #| fig-width: 6 #| fig-height: 3 #| title: Graph 3 #INSERT CODE FOR PENGUIN MAP ``` ## Column {width=35%} ```{r} #| fig-width: 8 #| fig-height: 6 #| fig-align: 'center' #| title: Graph 1 #INSERT CODE FOR FIRST PENGUIN GRAPH ``` ```{r} #| fig-width: 6 #| fig-height: 3 #| title: Graph 2 #INSERT CODE FOR SECOND PENGUIN GRAPH ``` # Data ## Column {width=100%} Data were collected and made available by [Dr. Kristen Gorman](https://www.uaf.edu/cfos/people/faculty/detail/kristen-gorman.php) and the [Palmer Station, Antarctica LTER](https://pallter.marine.rutgers.edu), a member of the Long Term Ecological Research Network. ```{r} #INSERT CODE FOR INTERACTIVE DATA TABLE ```