Skip to content

Commit

Permalink
docs: add alt text to images
Browse files Browse the repository at this point in the history
  • Loading branch information
fboulnois committed May 4, 2022
1 parent 1b7bb90 commit 7b737ba
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ ggplot(data = dt, aes(year_of_overruling_decision)) +
theme_bw()
```

![](README_files/figure-gfm/hist-1-1.png)<!-- -->
![decisions overruled since the founding of the United States](README_files/figure-gfm/hist-1-1.png)<!-- -->

Based on the histogram, most decisions were overruled by subsequent
decisions around the 1940s and 1970s, and the last two decades have been
Expand Down Expand Up @@ -290,7 +290,7 @@ ggplot(data = dt[year_of_overruling_decision >= 2000, ], aes(year_of_overruling_
theme_bw()
```

![](README_files/figure-gfm/hist-since-2000-1.png)<!-- -->
![decisions overruled since the year 2000](README_files/figure-gfm/hist-since-2000-1.png)<!-- -->

``` r
dt[year_of_overruling_decision >= 2000, .N, by = year_of_overruling_decision][, sum(N)]
Expand Down

0 comments on commit 7b737ba

Please sign in to comment.