Skip to content
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

what is the meaning of event_date in the gis_line list file? #17

Closed
xinhuayu opened this issue Apr 27, 2020 · 4 comments
Closed

what is the meaning of event_date in the gis_line list file? #17

xinhuayu opened this issue Apr 27, 2020 · 4 comments

Comments

@xinhuayu
Copy link

I assume case date is the date FL reported the patient as a case.

Is the event date related to first clinic visit date or something about test?

Thanks

-yu

@gadenbuie
Copy link
Owner

I'm not entirely sure myself. The case date is mentioned a few times in the information pages about the date, e.g. here, but I haven't seen an explanation of the event_date variable.

Q: What does “Case Date” represent?

“Case date” is the date the positive laboratory result was received in the Department of Health’s database system and became a “confirmed case.” This is not the date a person contracted the virus, became symptomatic, or was treated. Data users: Please not that case date is stored in the data as “Case_”.

library(tidyverse)

line_list <- read_csv("https://github.com/gadenbuie/covid19-florida/raw/master/data/covid-19-florida_arcgis_line-list.csv")

line_list %>%
  count(event_date, case) %>%
  ggplot() +
  aes(event_date, case, fill = n) +
  geom_tile() +
  scale_fill_viridis_c(option = "A") +
  theme_minimal() +
  coord_equal()

line_list %>% 
  select(case, event_date) %>% 
  pivot_longer(cols = c(case, event_date)) %>% 
  ggplot() + 
  aes(x = value) + 
  geom_bar() +
  facet_wrap(vars(name), scales = "free")

From the DOH dashboard:
image

Created on 2020-04-28 by the reprex package (v0.3.0)

@xinhuayu
Copy link
Author

thanks.

@gadenbuie
Copy link
Owner

This article in the Palm Beach Post claims that the event_date column is patient-reported first day of symptoms.

@gadenbuie
Copy link
Owner

gadenbuie commented May 6, 2020

This article in the Tampa Bay Times confirms that event date is self-reported symptom onset.

Reporters discovered an anomaly: Six early cases that had appeared on April 27 did not appear in the May 1 data, including the two cases where symptoms dated back to Dec. 31, 2019. In the May 1 data, the earliest symptom onset date, or “event date,” was listed as Jan 1, 2020.

Those missing cases were not explained in detail by DOH.

It is possible that state investigators determined a different symptom onset date for the original cases and updated the data to reflect new findings.

“Event date will be updated as more information is gathered about the case,” Moscoso, the DOH spokesman, said. “For instance, we would not know the person’s onset date when we received the lab result. The county interviews the individual and determines their onset date, so the ‘event date’ would change.”

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants