Skip to content

Commit

Permalink
ignore rdata files from commits to avoid problems with large files
Browse files Browse the repository at this point in the history
  • Loading branch information
Jake Hofman committed Jun 7, 2021
1 parent 2617cfd commit 2904a8f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,6 @@
*.gz
*.csv
*.tsv
*.RData
*.Rdata
*.rdata
6 changes: 3 additions & 3 deletions week1/plot_trips.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,16 +26,16 @@ load('trips.RData')
# plot the total number of trips (on the y axis) by age (on the x axis) and gender (indicated with color)

# plot the ratio of male to female trips (on the y axis) by age (on the x axis)
# hint: use the spread() function to reshape things to make it easier to compute this ratio
# (you can skip this and come back to it tomorrow if we haven't covered spread() yet)
# hint: use the pivot_wider() function to reshape things to make it easier to compute this ratio
# (you can skip this and come back to it tomorrow if we haven't covered pivot_wider() yet)

########################################
# plot weather data
########################################
# plot the minimum temperature (on the y axis) over each day (on the x axis)

# plot the minimum temperature and maximum temperature (on the y axis, with different colors) over each day (on the x axis)
# hint: try using the gather() function for this to reshape things before plotting
# hint: try using the pivot_longer() function for this to reshape things before plotting
# (you can skip this and come back to it tomorrow if we haven't covered reshaping data yet)

########################################
Expand Down

0 comments on commit 2904a8f

Please sign in to comment.