r-novice-inflammation icon indicating copy to clipboard operation
r-novice-inflammation copied to clipboard

Programming with R

Results 78 r-novice-inflammation issues
Sort by recently updated
recently updated
newest added

Included the required information for where to save R scripts for command-line programming. Originally it simply said to save the files (without detailing where to save the files). This took...

enhancement
status:wait

Wanted to address this issue described in: https://github.com/swcarpentry/r-novice-inflammation/issues/372 I added some text below the figure describing what it is, and I also added some text to the 'Commenting' section of...

status:waiting for response

I am of strong opinion that introducing `for loops` and `if else` statements early in the teaching program makes more harm than good to R education. I understand that this...

enhancement
discussion
help wanted

- Comes with the `tidyverse` - Helps learners get help - Win win! ``` r (y [1] 1 2 3 4 mean(y) #> [1] 2.5 ``` Created on 2021-04-14 by...

Looking at the syllabus, I find the list of topics very confusing: sessions 1-8 seem to be continuous. Topics 9-15 seem to start from the beginning with some extra stuff...

enhancement
discussion
help wanted
template-and-tools

Consider enhancing the testing information in http://swcarpentry.github.io/r-novice-inflammation/02-func-R/index.html using for example - testhat https://testthat.r-lib.org/ - RUnit https://cran.r-project.org/web/packages/RUnit/ Currently, the allequal test is poorly motivated.

Lesson: Programming with R: 6. Best Practices for Writing R Code, under additional best practice recommendations. http://swcarpentry.github.io/r-novice-inflammation/06-best-practices-R/index.html Knowing how to debug/fix coding errors is a critical aspect for good practice....

good first issue
type:enhancement

I'm currently teaching this SWC R lesson, and I noticed an incorrect definition of the `c` function in the [01-starting-with-data section](http://swcarpentry.github.io/r-novice-inflammation/01-starting-with-data/index.html). It says the `c` function means "combine", but it...

Hi, In "Introduction to RStudio" it might be helpful to add the shortcut for multiple lines comment/uncomment (Ctrl+Shift+c) under "#Commenting" section, I find it very helpful and wished I know...