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
condense_period : While aggregating the data say from daily to weekly level, does not have option to sum the values. For example for sales data at daily level, when aggregated using condense_period, the values does not match at both daily and weekly levels.
Can there be an option to add additional function such as sum, average, median etc. while condensing the period?
Hi Matt,
condense_period : While aggregating the data say from daily to weekly level, does not have option to sum the values. For example for sales data at daily level, when aggregated using condense_period, the values does not match at both daily and weekly levels.
Can there be an option to add additional function such as sum, average, median etc. while condensing the period?
For Example:
Below two results don't match:
Output1:
m4_daily %>%
group_by(id) %>%
condense_period(.period = "1 month") %>%
summarise(tot = sum(value))
Output2:
m4_daily %>%
group_by(id) %>%
summarise(tot = sum(value))
The text was updated successfully, but these errors were encountered: