forked from privefl/rmarkdown-website-template
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathhelp.Rmd
41 lines (31 loc) · 2.09 KB
/
help.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
---
title: "Get Help & Give Help!"
---
When you have a problem in R, you can:
- Read the documentation: use `?` or, equivalently, `help`.
- Google it (someone probably already had the same problem and someone else probably told him a way to fix it, probably on [StackOverflow](https://stackoverflow.com/)).
- Ask it on Stack Overflow (SO) after checking that your question has not already been asked.
- Come to one of our working sessions to get help and give help about R code. During these sessions, one could help you to post your first question on SO.
- [Join the Slack of the French-speaking R community](https://join.slack.com/t/r-grrr/shared_invite/enQtMzI4MzgwNTc4OTAxLWZlOGZiZTBiMWU0NDQ3OTYzOGE1YThiODgwZWNhNWEyYjI4ZDJiNmNhY2YyYWI5YzFiOTFkNDYxYzkwODUwNWM)
Some guidelines and resources are available at [SO](https://stackoverflow.com/tags/r/info).
Also check https://privefl.github.io/advr38book/good-practices.html#getting-help.
<!-- We also propose to reference all the unanswered [r] questions of our members so that we can all answer them. For that, you just have to give your SO ID in your member infos. If you want to add one, please [email me](mailto::florian.prive@univ-grenoble-alpes.fr). -->
<!-- ### Unanswered [r] questions of Grenoble useRs -->
<!-- ```{r, include=FALSE} -->
<!-- # devtools::install_github("dgrtwo/stackr") -->
<!-- library(tidyverse) -->
<!-- links <- googlesheets::gs_key("1WyfmLfoAQUP2iRogqcOfYA9Hum7DT0BcVyTtei_6Xjw", -->
<!-- lookup = TRUE, visibility = "private") %>% -->
<!-- googlesheets::gs_read() %>% -->
<!-- drop_na(SO_ID) %>% -->
<!-- pull(SO_ID) %>% -->
<!-- stackr::stack_users("questions") %>% -->
<!-- select(tags, is_answered, link, title) %>% -->
<!-- mutate(tags = strsplit(tags, split = ",", fixed = TRUE)) %>% -->
<!-- filter(map_lgl(tags, ~is.element("r", .x)), !is_answered) %>% -->
<!-- transmute(paste0("<a href='", link, "' target='_blank'>", title, "</a>")) %>% -->
<!-- pull() -->
<!-- ``` -->
<!-- ```{r, echo=FALSE, results='asis'} -->
<!-- for (link in sample(links)) cat("-", link, "\n\n") -->
<!-- ``` -->