11. Visualizing Data with ggplot
This week …
Draw pictures.
Required Reading
Just read the whole thing, tbh.
- Kieran Healy Data Visualization: A Practical Introduction (Princeton: Princeton University Press, 2019), http://socviz.co/.
Tuesday, November 12, 2024
Draw pictures.
Just read the whole thing, tbh.
---
title: "11. Visualizing Data with ggplot"
date: last-modified
date-format: full
---
```{r slides, echo=FALSE, include=FALSE}
source(here::here("R", "slide-things.R"))
slide_details <- tibble::tribble(
~youtube_id, ~title, ~slide, ~active,
"", "", "1", TRUE)
```
## This week ...
Draw pictures.
## Required Reading
Just read the whole thing, tbh.
- @healy:2019
## Examples
## Assignment
## Slides
<script type="application/javascript">
function resizeIFrameToFitContent( iFrame ) {
iFrame.width = document.getElementById("quarto-document-content").clientWidth;
iFrame.height = (document.getElementById("quarto-document-content").clientWidth * 0.5625)
}
window.addEventListener('DOMContentLoaded', function(e) {
var iFrame = document.getElementById( 'quartoframe' );
resizeIFrameToFitContent( iFrame );
} );
</script>
<iframe class="slide-deck" id="quartoframe" src="../slides/11a-slides.html"></iframe>
```{r show-slide-tabs, echo=FALSE, results="asis"}
slide_win_button("/slides/11a-slides")
```
<iframe class="slide-deck" id="quartoframe" src="../slides/11b-slides.html"></iframe>
```{r show-slide-tabs2, echo=FALSE, results="asis"}
slide_win_button("/slides/11b-slides")
```
<iframe class="slide-deck" id="quartoframe" src="../slides/11c-slides.html"></iframe>
```{r show-slide-tabs3, echo=FALSE, results="asis"}
slide_win_button("/slides/11c-slides")
```