Skip to content

Commit

Permalink
Spellings
Browse files Browse the repository at this point in the history
  • Loading branch information
avahoffman committed Sep 26, 2024
1 parent cad1e83 commit 2cb9156
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ Look at the column names using `colnames` - do you notice any patterns?
Let's rename the columns "co2" from this type of format: "2011" to this: "CO2_2011" using `rename`.
Be sure to do this for all years 2012, 2013, and 2014. Make sure that you end up with the renamed columns in a data frame named `co2` here and in subsequent steps.

Hint: If you run code to rename the columns and store back into a data frame of the same name like `co2` you will not be able to re-run the renaming code without error (the columns are already renamed so it won't be able to find the oldname of the column anymore)
Hint: If you run code to rename the columns and store back into a data frame of the same name like `co2` you will not be able to re-run the renaming code without error (the columns are already renamed so it won't be able to find the old name of the column anymore)

```
# General format
Expand Down
2 changes: 1 addition & 1 deletion modules/cheatsheets/Day-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ output:
### Major concepts

- **Package** - a package in R is a bundle or “package” of code (and or possibly data) that can be loaded together for easy repeated use or for sharing with others. Like an "expansion pack".
- **Function** - a function is a particular piece of code that allows you to dosomething in R. You can write your own, use functions that come directly from installing R, or use functions from additional packages.
- **Function** - a function is a particular piece of code that allows you to do something in R. You can write your own, use functions that come directly from installing R, or use functions from additional packages.
- **Argument** - an option that you specify to a function.
- **Object** - an object is something that can be worked with in R - can be lots of different things!
- [**Tidyverse**](https://tidyverse.tidyverse.org/articles/paper.html) - This is a newer set of packages designed for data science that can make your code more intuitive as compared to the original older Base R.
Expand Down
Binary file modified modules/cheatsheets/Day-1.pdf
Binary file not shown.

0 comments on commit 2cb9156

Please sign in to comment.