youtu.be/oIMFZf5dUFA?...
youtu.be/oIMFZf5dUFA?...
L
L
```
library(janitor)
x <- data.frame("Month Name" = 1:12) |> clean_names()
```
This should turn the column name to month_name and allow you to refer to it without quotes.
```
library(janitor)
x <- data.frame("Month Name" = 1:12) |> clean_names()
```
This should turn the column name to month_name and allow you to refer to it without quotes.
Otherwise, looks really good!
Otherwise, looks really good!
I am trying to improve upon a package that primarily uses matrices. But it's limited by the two-dimensional nature of them, and arrays seem like the natural step up.
I am trying to improve upon a package that primarily uses matrices. But it's limited by the two-dimensional nature of them, and arrays seem like the natural step up.
Note to future self: read the documentation of functions!!
Note to future self: read the documentation of functions!!