File tree 1 file changed +24
-20
lines changed
doctor_visits/delphi_doctor_visits
1 file changed +24
-20
lines changed Original file line number Diff line number Diff line change @@ -26,26 +26,30 @@ class Config:
26
26
HRR_COLS = ["Pat HRR Name" , "Pat HRR ID" ]
27
27
ID_COLS = [DATE_COL ] + [GEO_COL ] + HRR_COLS + [AGE_COL ]
28
28
FILT_COLS = ID_COLS + COUNT_COLS
29
- DTYPES = {"ServiceDate" : str ,
30
- "PatCountyFIPS" : str ,
31
- "Denominator" : int ,
32
- "Flu1" : int ,
33
- "Covid_like" : int ,
34
- "Flu_like" : int ,
35
- "Mixed" : int ,
36
- "PatAgeGroup" : str ,
37
- "Pat HRR Name" : str ,
38
- "Pat HRR ID" : float ,
39
- "servicedate" : str ,
40
- "patCountyFIPS" : str ,
41
- "patAgeGroup" : str ,
42
- "patHRRname" : str ,
43
- "patHRRid" : float }
44
- DEVIANT_COLS_MAP = {"servicedate" : "ServiceDate" ,
45
- "patCountyFIPS" : "PatCountyFIPS" ,
46
- "patHRRname" : "Pat HRR Name" ,
47
- "patAgeGroup" : "PatAgeGroup" ,
48
- "patHRRid" : "Pat HRR ID" }
29
+ DTYPES = {
30
+ "ServiceDate" : str ,
31
+ "PatCountyFIPS" : str ,
32
+ "Denominator" : int ,
33
+ "Flu1" : int ,
34
+ "Covid_like" : int ,
35
+ "Flu_like" : int ,
36
+ "Mixed" : int ,
37
+ "PatAgeGroup" : str ,
38
+ "Pat HRR Name" : str ,
39
+ "Pat HRR ID" : float ,
40
+ "servicedate" : str ,
41
+ "patCountyFIPS" : str ,
42
+ "patAgeGroup" : str ,
43
+ "patHRRname" : str ,
44
+ "patHRRid" : float
45
+ }
46
+ DEVIANT_COLS_MAP = {
47
+ "servicedate" : "ServiceDate" ,
48
+ "patCountyFIPS" : "PatCountyFIPS" ,
49
+ "patHRRname" : "Pat HRR Name" ,
50
+ "patAgeGroup" : "PatAgeGroup" ,
51
+ "patHRRid" : "Pat HRR ID"
52
+ }
49
53
50
54
SMOOTHER_BANDWIDTH = 100 # bandwidth for the linear left Gaussian filter
51
55
MAX_BACKFILL_WINDOW = 7 # maximum number of days used to average a backfill correction
You can’t perform that action at this time.
0 commit comments