-
Notifications
You must be signed in to change notification settings - Fork 9
New issue
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
Filtering in a date range #161
Comments
There's a dimension called "Hour of Day" (api ID is |
Here's a quick version if you want an hourly breakdown: aw_freeform_table(dimensions = 'timeparthourofday', search = "( CONTAINS '7:00 PM' ) OR ( CONTAINS '8:00 PM')") |
@aparada96 did @charlie-gallagher's solution solve this for you? |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I have the following code below. Is there a way to filter the selected date range in R but only capture specific hours? For example, I want to apply a date range filter for 30 days but only select results between the hours of 7pm and 10pm.
I know that I can filter for a specific time frame by applying:
date_range = as.POSIXct(c("2023-08-29T19:00:00", "2023-08-29T22:00:00"), format = "%Y-%m-%dT%H:%M:%S")
, but I wonder if there's a way to do this where I wouldn't have to apply/run this 30 times (for the 30 days). Thanks!The text was updated successfully, but these errors were encountered: