Davis Tolman 2 Posted August 25, 2021 Share Posted August 25, 2021 I'm looking at the John Hopkins Covid-19 dataset and have noted that the peaks and troughs in Covid Confirmed Cases preceeds the peaks and troughs of Covid Deaths by around 18 to 21 days. Is there a way to time-shift the Covid Donfirmed Case data by -21 days in order to do a more rigours analysis of this relationship Link to comment Share on other sites More sharing options...
Fabian Duerr Posted August 27, 2021 Share Posted August 27, 2021 You could add a calculated columnthat contains the date column value shifted by 21 days. Please use the DateAdd() function for this: DateAdd('day', -21, [Date Column])If confirmed cases and covid deaths are sharing this column, you can additionally work with a case statement. Link to comment Share on other sites More sharing options...
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now