We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi,
When attempting to add a date filter in some lines return a null value, which I think is causing the following error:
Run (1/466): for date 2013-09-24 Error in if (nrow(ga.data$rows) < ga.data$totalResults && (messages || : missing value where TRUE/FALSE needed
For reference, my query looks like the following:
mydata9999 <- ga$getData(ids = "ga:xxxxxxxx", batch = TRUE, walk = TRUE, start.date = "2013-09-24", end.date = "2015-01-02", metrics = "ga:pageviews,ga:uniquePageviews,ga:sessions,ga:users,ga:bounces", dimensions = "ga:yearMonth,ga:userType", filter = "ga:yearMonth=~^20(1412|1411|1312)")
Is this a bug or just me being retarded? The query seems to run fine when using other filters.
The text was updated successfully, but these errors were encountered:
you can try:
tryCatch({ mydata9999 <- ga$getData(ids = "ga:xxxxxxxx", batch = TRUE, walk = TRUE, start.date = "2013-09-24", end.date = "2015-01-02", metrics = "ga:pageviews,ga:uniquePageviews,ga:sessions,ga:users,ga:bounces", dimensions = "ga:yearMonth,ga:userType", filter = "ga:yearMonth=~^20(1412|1411|1312)") }, error=function(e){})
Sorry, something went wrong.
No branches or pull requests
Hi,
When attempting to add a date filter in some lines return a null value, which I think is causing the following error:
For reference, my query looks like the following:
Is this a bug or just me being retarded? The query seems to run fine when using other filters.
The text was updated successfully, but these errors were encountered: