Skip to content

Commit

Permalink
# filter only years like 1980, 1990 ...
Browse files Browse the repository at this point in the history
filter(year %% 10 == 0)
  • Loading branch information
GrigorijSchleifer committed Nov 16, 2024
1 parent de3a157 commit 33c7c10
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
Binary file modified .DS_Store
Binary file not shown.
12 changes: 9 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
# 16.11.24

```R
# filter only years like 1980, 1990 ...
filter(year %% 10 == 0)
```


# 22.10.24

```R
Expand All @@ -12,9 +20,7 @@ malaria_spread %>%
ggplot(aes(long, lat, group = group, fill = Y2015)) +
geom_polygon() +
ltheme_void()
```11


```


```R
Expand Down

0 comments on commit 33c7c10

Please sign in to comment.