You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
.age <- .df$Age #make it easier to call the calendar age multiple times
#+/- 50 years around record date (to match bins in tempRecord
.temp <- subset(tempRecord, tempRecord$Age < .age + 50 & tempRecord$Age > .age - 50, na.rm = TRUE)$temperature_column #making a data frame, $ calls the column I want (select creates a dataframe as well, not a vector)