Skip to content

Commit

Permalink
Correct order in which vignette is knit
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhsparks committed Jun 13, 2018
1 parent cccefe2 commit 6ac7d53
Show file tree
Hide file tree
Showing 8 changed files with 89 additions and 87 deletions.
158 changes: 79 additions & 79 deletions docs/articles/IEW12_slides.html

Large diffs are not rendered by default.

Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
18 changes: 10 additions & 8 deletions vignettes/IEW12_slides.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -33,14 +33,6 @@ rrpp <- gsheet2tbl(
)
```

## Unnest the software that were used

```{r}
rrpp <-
rrpp %>%
unnest(software_used = strsplit(software_used, ", "))
```

# Visualise journals
```{r}
ggplot(rrpp, aes(x = abbreviation,
Expand Down Expand Up @@ -173,6 +165,16 @@ ggplot(rrpp, aes(x = software_cite,

What are the 10 most popular software packages used?

### Unnest the software that were used

```{r}
rrpp <-
rrpp %>%
unnest(software_used = strsplit(software_used, ", "))
```

### Graph the software that were used

```{r}
tab <- table(rrpp$software_used)
tab_s <- sort(tab)
Expand Down

0 comments on commit 6ac7d53

Please sign in to comment.