df_lag2 <- left_join(df.post, df.pre %>% select(customer_id, month, kwh_lag), by = c("customer_id", "month"), copy=F)
It says:
Error: This tidyselect interface doesn't support predicates yet. Contact the package author and suggest using
eval_select()
.
What does this mean? How should I do?