forked from openpharma/workshop-r-swe
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.qmd
69 lines (52 loc) · 4.6 KB
/
index.qmd
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
---
title: "Good Software Engineering Practice for R Packages"
---
<!--
Creators (initial authors):
- Daniel Sabanes Bove, https://github.com/danielinteractive/ and www.linkedin.com/in/danielsabanesbove/
- Friedrich Pahlke, https://github.com/fpahlke/ and www.linkedin.com/in/pahlke/
- Kevin Kunzmann, https://github.com/kkmann/ and https://www.linkedin.com/in/kevin-kunzmann-6486a11bb/
- Liming Li, https://github.com/clarkliming
- Joe Zhu, https://github.com/shajoezhu and http://www.linkedin.com/in/joe-zhu-464b5818
- Shuang Li, https://github.com/shuangli22
In the current version, changes were done by (later authors):
- Andrew Bean, https://www.linkedin.com/in/andrew-bean-83539116/ and https://github.com/andrew-bean
- Biju (Ryan) Wang, https://www.linkedin.com/in/bijuwang/ and https://github.com/bijuwang
License: This work is licensed under the Creative Commons Attribution-ShareAlike 4.0 International License.
To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/4.0/.
The source files are hosted at https://github.com/openpharma/workshop-r-swe-md, which is forked from
the original version at https://github.com/openpharma/workshop-r-swe.
Important: To use this work you must provide the name of the creators (initial authors), a link to the material, a link to the license, and indicate if changes were made.
-->
Welcome to the homepage of the workshop *"Good Software Engineering Practice for R Packages"*. In this course participants will learn hands-on skills and tools to engineer reliable R packages used in biostatistics. The day will be a mix of presentations and exercises. Participants need already to be comfortable with writing functions in R, and use their own laptops.
## Next Event
The next event will be held on September 26, 2023 as an in-person workshop at the George Washington University, Biostatistics Center, Suite 750, Rockville, MD, US.
Please register [here](https://www.eventbrite.com/e/good-software-engineering-practice-for-r-packages-tickets-675076410717?aff=oddtdtcreator).
This event is organized by [`openstatsware`](https://rconsortium.github.io/asa-biop-swe-wg/) as well as the ASA. We are grateful to have received logistic support by ASA BIOP and ASA. The venue is kindly provided by the George Washington University Biostatistics Center. Presenters will be Andrew Bean, Biju (Ryan) Wang and Daniel Sabanes Bove.
## Communication
We offer a [gitter chat channel](https://matrix.to/#/#workshop-r-swe_community:gitter.im) to communicate before, during, and after the course.
## Workshop Program
```{r}
#| echo: false
readr::read_csv("slides/resources/program.csv", col_types = "cc") |>
knitr::kable(col.names = c("", ""))
```
## Prerequisites & Technical Setup
Prior to the course, participants should
- set up a (free) [GitHub.com account](https://github.com/join). There are other git Platforms like [Gitlab](https://about.gitlab.com/) or [Bitbucket](https://bitbucket.org/) but we made the choice to go with GitHub.com for the course since it is by far the most relevant git platform in the R community.
- download and extract [simulatr.zip](slides/download/simulatr.zip)
- either make sure they have a working R software development setup on their own laptop (up-to-date git/Rtools/R/RStudio) or get access to <https://posit.cloud>. The latter offers a free tier account with 25 hours of computing time per months and can be accessed using ones GitHub.com account.
For the course, participants are required to use their own laptop to be able to participate in the exercises.
Light breakfast and coffee, as well as lunch, will be provided.
### Optional reading list
- Excellent and very comprehensive [R Packages (2e)](https://r-pkgs.org/)
- (Hardcore) description of how [Writing R Extensions](https://cran.r-project.org/doc/manuals/R-exts.html) works
- [GitHub 'Hello World'](https://docs.github.com/en/get-started/quickstart/hello-world) tutorial on how to use GitHub.com (does not require git command line knowledge)
- Tutorial on [version control with git and SVN](https://support.posit.co/hc/en-us/articles/200532077-Version-Control-with-Git-and-SVN) (we will be using git)
- Command line git mini intro [trygit](https://trygit.js.org/)
- [First steps with git & github by RStudio](https://www.youtube.com/watch?v=jN6tvgt3GK8)
- [RStudio cheatsheets/ Git & GitHub](https://github.com/rstudio/cheatsheets/blob/main/git-github.pdf)
## Past Events
- [10th February 2023, Basel, CH](https://kkmann.github.io/workshop-r-swe/)
- [24th March 2023, Shanghai, CN](https://openpharma.github.io/workshop-r-swe/)
- [20th July 2023, San José, CA, US](https://openpharma.github.io/workshop-r-swe-sf/)