daily_activity_df %/%
group_by(Id)
tells me that "Id" is not found
daily_activity_df %/%
group_by(Id)
tells me that "Id" is not found
The pipe operator is %>% or |>, not %/%. Try
daily_activity_df %>%
group_by(Id)
or, on recent versions of R
daily_activity_df |>
group_by(Id)
Thank you very much. It surely worked. Stupid me!!!)))
This topic was automatically closed 7 days after the last reply. New replies are no longer allowed.
If you have a query related to it or one of the replies, start a new topic and refer back with a link.