UCSBCarpentry / CustomDC-R

This UCSB Library customized Data Carpentry Lesson for R-ecology, using a dataset from SB LTER.
https://ucsbcarpentry.github.io/CustomDC-R/
0 stars 0 forks source link

No variable named Daily #19

Open djhunter opened 2 years ago

djhunter commented 2 years ago

In the time-series section,

daily_counts <- peng_raw_subset %>%
  count(Daily, Species)

Doesn't work. Did you mean,

daily_counts <- peng_raw_subset %>%
  count(`Date Egg`, Species)
djhunter commented 2 years ago

In the all of the following examples, replace Daily with Date Egg