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
Running ga-dashboard-demo, I was getting an error at line 178 of server.R: the zoo() object created was expecting a DataFrame instead of a tibble. See the following related StackOverflow post: https://stackoverflow.com/a/42645170
Though perhaps not the best solution, under line 178 of server.R, I added an explicit coercion to DataFrame:
agg_data <- as.data.frame(agg_data)
The text was updated successfully, but these errors were encountered:
Running ga-dashboard-demo, I was getting an error at line 178 of server.R: the zoo() object created was expecting a DataFrame instead of a tibble. See the following related StackOverflow post:
https://stackoverflow.com/a/42645170
Though perhaps not the best solution, under line 178 of server.R, I added an explicit coercion to DataFrame:
agg_data <- as.data.frame(agg_data)
The text was updated successfully, but these errors were encountered: