Browse Source

Add some links from the twitter thread to the readme

pull/5/merge
Garrick Aden-Buie 7 years ago
parent
commit
906b1d57af
2 changed files with 54 additions and 0 deletions
  1. +25
    -0
      README.Rmd
  2. +29
    -0
      README.md

+ 25
- 0
README.Rmd View File

) )
``` ```


[gganimate]: https://github.com/thomasp85/gganimate#README

# Tidy Animated Verbs # Tidy Animated Verbs


Garrick Aden-Buie -- [@grrrck](https://twitter.com/grrrck) -- [garrickadenbuie.com](https://www.garrickadenbuie.com) Garrick Aden-Buie -- [@grrrck](https://twitter.com/grrrck) -- [garrickadenbuie.com](https://www.garrickadenbuie.com)
- Filtering Joins: [`semi_join()`](#semi-join), [`anti_join()`](#anti-join) - Filtering Joins: [`semi_join()`](#semi-join), [`anti_join()`](#anti-join)


- Learn more about
- [Relational Data](#relational-data)
- [gganimate](#gganimate)

## Mutate Joins ## Mutate Joins


```{r intial-dfs} ```{r intial-dfs}
```{r echo=TRUE} ```{r echo=TRUE}
anti_join(x, y, by = "id") anti_join(x, y, by = "id")
``` ```

## Learn More

### Relational Data

The [Relational Data](http://r4ds.had.co.nz/relation-data.html) chapter of the
[R for Data Science](http://r4ds.had.co.nz/) book by Garrett Grolemund and Hadley Wickham
is an excellent resource for learning more about relational data.

The [dplyr two-table verbs vignette](https://dplyr.tidyverse.org/articles/two-table.html)
and Jenny Bryan's [Cheatsheet for dplyr join functions](http://stat545.com/bit001_dplyr-cheatsheet.html)
are also great resources.

### gganimate

The animations were made possible by the newly re-written [gganimate] package by
[Thomas Lin Pedersen](https://github.com/thomasp85)
(original by [Dave Robinson](https://github.com/dgrtwo)).
The [package readme][gganimate] provides an excellent (and quick) introduction to gganimte.

+ 29
- 0
README.md View File

- Filtering Joins: [`semi_join()`](#semi-join), - Filtering Joins: [`semi_join()`](#semi-join),
[`anti_join()`](#anti-join) [`anti_join()`](#anti-join)


- Learn more about
- [Relational Data](#relational-data)
- [gganimate](#gganimate)

## Mutate Joins ## Mutate Joins


<img src="images/original-dfs.png" width="480px" /> <img src="images/original-dfs.png" width="480px" />
#> <int> <chr> #> <int> <chr>
#> 1 3 x3 #> 1 3 x3
``` ```

## Learn More

### Relational Data

The [Relational Data](http://r4ds.had.co.nz/relation-data.html) chapter
of the [R for Data Science](http://r4ds.had.co.nz/) book by Garrett
Grolemund and Hadley Wickham is an excellent resource for learning more
about relational data.

The [dplyr two-table verbs
vignette](https://dplyr.tidyverse.org/articles/two-table.html) and Jenny
Bryan’s [Cheatsheet for dplyr join
functions](http://stat545.com/bit001_dplyr-cheatsheet.html) are also
great resources.

### gganimate

The animations were made possible by the newly re-written
[gganimate](https://github.com/thomasp85/gganimate#README) package by
[Thomas Lin Pedersen](https://github.com/thomasp85) (original by [Dave
Robinson](https://github.com/dgrtwo)). The [package
readme](https://github.com/thomasp85/gganimate#README) provides an
excellent (and quick) introduction to gganimte.

Loading…
Cancel
Save