Skip to content
This repository has been archived by the owner on Sep 18, 2019. It is now read-only.

Commit

Permalink
updated packages
Browse files Browse the repository at this point in the history
  • Loading branch information
kierisi committed Jan 16, 2018
1 parent 9550935 commit 391f401
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 31 deletions.
28 changes: 13 additions & 15 deletions block010_dplyr-end-single-table.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@
}
</style>

<link rel="stylesheet" href="libs\local\main.css" type="text/css" />
<link rel="stylesheet" href="libs\local\nav.css" type="text/css" />
<link rel="stylesheet" href="\\netdna.bootstrapcdn.com\font-awesome\4.0.3\css\font-awesome.css" type="text/css" />
<link rel="stylesheet" href="libs/local/main.css" type="text/css" />
<link rel="stylesheet" href="libs/local/nav.css" type="text/css" />
<link rel="stylesheet" href="//netdna.bootstrapcdn.com/font-awesome/4.0.3/css/font-awesome.css" type="text/css" />

</head>

Expand Down Expand Up @@ -187,18 +187,16 @@ <h3>Where were we?</h3>
<div id="load-dplyr-and-gapminder" class="section level3">
<h3>Load dplyr and gapminder</h3>
<p>I choose to load the tidyverse, which will load dplyr, among other packages we use incidentally below. Also load gapminder.</p>
<pre class="r"><code>library(gapminder)</code></pre>
<pre><code>## Warning: package &#39;gapminder&#39; was built under R version 3.4.3</code></pre>
<pre class="r"><code>library(tidyverse)</code></pre>
<pre><code>## Loading tidyverse: ggplot2
## Loading tidyverse: tibble
## Loading tidyverse: tidyr
## Loading tidyverse: readr
## Loading tidyverse: purrr
## Loading tidyverse: dplyr</code></pre>
<pre><code>## Conflicts with tidy packages ----------------------------------------------</code></pre>
<pre><code>## filter(): dplyr, stats
## lag(): dplyr, stats</code></pre>
<pre class="r"><code>library(gapminder)
library(tidyverse)</code></pre>
<pre><code>## ── Attaching packages ─────────────────────────────────────────────────────────────────────── tidyverse 1.2.1 ──</code></pre>
<pre><code>## ✔ ggplot2 2.2.1 ✔ purrr 0.2.4
## ✔ tibble 1.3.4 ✔ dplyr 0.7.4
## ✔ tidyr 0.7.2 ✔ stringr 1.2.0
## ✔ readr 1.1.1 ✔ forcats 0.2.0</code></pre>
<pre><code>## ── Conflicts ────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()</code></pre>
</div>
<div id="create-a-copy-of-gapminder" class="section level3">
<h3>Create a copy of gapminder</h3>
Expand Down
24 changes: 8 additions & 16 deletions block010_dplyr-end-single-table.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,32 +28,24 @@ I choose to load the tidyverse, which will load dplyr, among other packages we u

```r
library(gapminder)
```

```
## Warning: package 'gapminder' was built under R version 3.4.3
```

```r
library(tidyverse)
```

```
## Loading tidyverse: ggplot2
## Loading tidyverse: tibble
## Loading tidyverse: tidyr
## Loading tidyverse: readr
## Loading tidyverse: purrr
## Loading tidyverse: dplyr
## ── Attaching packages ─────────────────────────────────────────────────────────────────────── tidyverse 1.2.1 ──
```

```
## Conflicts with tidy packages ----------------------------------------------
## ✔ ggplot2 2.2.1 ✔ purrr 0.2.4
## ✔ tibble 1.3.4 ✔ dplyr 0.7.4
## ✔ tidyr 0.7.2 ✔ stringr 1.2.0
## ✔ readr 1.1.1 ✔ forcats 0.2.0
```

```
## filter(): dplyr, stats
## lag(): dplyr, stats
## ── Conflicts ────────────────────────────────────────────────────────────────────────── tidyverse_conflicts() ──
## ✖ dplyr::filter() masks stats::filter()
## ✖ dplyr::lag() masks stats::lag()
```

### Create a copy of gapminder
Expand Down

0 comments on commit 391f401

Please sign in to comment.