-
Notifications
You must be signed in to change notification settings - Fork 11
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
The acumulate deads for some contries are wrong #3
Comments
Thanks for reporting this. You can see the issue with the case of Germany as you noticed. There is no much I can do other than letting the people at JHU know about this as that is the source of the data in this case. |
Thanks!!! For India, you can look at the mistake easily x <- data[data$Country.Region == "India", -(1:4)] if there is a negative there must be something wrong. Cheers! |
Yes, I can see that, thanks again. I have opened an issue with JHU/CCSEGIS, see This is the list of location I found with this anomalies, 44 Prince Edward Island Canada In the meanwhile I will implement some checks to warn the user about this. |
Great, thanks!
And thanks for doing that R library!!
Cheers,
CE
…On Mon 13 Apr 2020 at 18:29 mponce0 ***@***.***> wrote:
Yes, I can see that, thanks again.
I have opened an issue with JHU/CCSEGIS, see
CSSEGISandData/COVID-19#2165
<CSSEGISandData/COVID-19#2165>
This is the list of location I found with this anomalies,
44 Prince Edward Island Canada
45 Quebec Canada
91 Cyprus
107 Finland
121 Germany
131 Iceland
132 India
142 Kazakhstan
183 Philippines
195 Serbia
198 Slovakia
In the meanwhile I will implement some checks to warn the user about this.
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#3 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ACDKNWP4RDARBB3QM7DVFF3RMON5BANCNFSM4MHIZO4Q>
.
|
Three new functions have been added to the package to test for data integrity and consistency:
These functions are already part of the development version of the package available in the GitHub repository and will be included in the next version of the package submitted to CRAN. |
These functions are also part of version v1.1 available to be installed from CRAN. |
Do this, for example
data <- covid19.data("ts-deaths")
x <- data[data$Country.Region == "Germany", ]
y <- as.numeric(x[-(1:4)])
plot(y, type = "l")
Do you see the problem?
If not, try looking at this particular "aggregate number of deads" in these dates:
2020-04-10 2020-04-11
2767 > (cant be) 2736
This also happends for India, and I do not know if for other countries.
Regards,
CE
obviously this is not correct.
The text was updated successfully, but these errors were encountered: