Always use comma notation for subsetting data frame columns #88
Labels
good first issue
Good issue for first-time contributors
type:clarification
Suggest change for make lesson clearer
Lines L315:L325 in Lesson 5 advocate for subsetting columns without comma notation:
head(gapminder[3])
I'd argue that for clarity sake, we should change this to always use comma notation:
head(gapminder[,3]
See #86
The text was updated successfully, but these errors were encountered: