-
Notifications
You must be signed in to change notification settings - Fork 24
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
coding attempt #17
base: main
Are you sure you want to change the base?
coding attempt #17
Conversation
```{r} | ||
kenya_data <- read_csv("data/kenya_county_climates.csv") | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good job, creating a dataframe for the assignment
|
||
```{r} | ||
precip_kenya <- select (kenya_data, County, contains ("Precipitation")) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using contains is a good choice of selecting all precip columns!
kenya_long <- filt_kenya %>% | ||
pivot_longer(cols = -County) | ||
``` | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Good workflow
There are many ways to do this! | ||
|
||
```{r} | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I did not get to to this part of the exercise as well, I am looking forward to attempting to solve it! good luck.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Keep up the good work!
My incomplete script -- need to finish this