I'm wondering why below code isn't updating the parent table of ra2021
. Am I using the Mutate and pipe incorrectly here? For the filtered time period, I wanted to change the value to zero. The console window shows the updated value (zero) but this is not reflecting in the parent table. Thanks.
ra2021 %>%
filter(TIMESTAMP > ymd_hms("2021-09-27 16:22:00") & TIMESTAMP < ymd_hms("2021-10-08 11:38:00"))%>%
mutate(Rf=0)