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
We are subtracting the number of days from the latest database date for many of the analyses.
For seven days we've been subtracting the 7 and then for 3 week we've been doing 21.
This give 8 days and 22 days. As follows
start_date <- date("2019-01-20")-3 seq(start_date, date("2019-01-20"), 1) length(seq(start_date, date("2019-01-20"), 1))
So we need to subtract 6 and 20 days to get previous 7 or 21 days.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
We are subtracting the number of days from the latest database date for many of the analyses.
For seven days we've been subtracting the 7 and then for 3 week we've been doing 21.
This give 8 days and 22 days. As follows
So we need to subtract 6 and 20 days to get previous 7 or 21 days.
The text was updated successfully, but these errors were encountered: