Skip to content

Commit

Permalink
add troubleshooting tips
Browse files Browse the repository at this point in the history
  • Loading branch information
jtr13 authored Oct 12, 2019
1 parent 0d2b8c2 commit 7c5bbde
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions basics.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,20 @@ rstudio_latest_version <-
**General advice**: don't get caught up in the details. Keep a list of questions and move on.

## Troubleshooting

### Document doesn't knit

Click "Session" "Restart R" and then run the chunks one by one from the top until you find the error.

### Functions stop working

Strange behavior from functions that previously worked are often caused by function conflicts. This can happen if you have two packages loaded with the same function names. To indicate the proper package, *namespace* it. Conflicts commonly occure with `select` and `filter` and `map`. If you intend the tidyverse ones use:

`dplyr::select`, `dplyr::filter` and `purrr::map`.

(Run across other conflicts or have more troubleshooting tips? Submit an [issue](https://github.com/jtr13/edav/issues){target="_blank"}

## Tips & Tricks

### Knitr
Expand Down

0 comments on commit 7c5bbde

Please sign in to comment.