We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f264325 commit 287af33Copy full SHA for 287af33
src/server/endpoints/covidcast_utils/model.py
@@ -9,6 +9,28 @@
9
from ..._params import SourceSignalPair
10
11
12
+PANDAS_DTYPES = {
13
+ "source": str,
14
+ "signal": str,
15
+ "time_type": str,
16
+ "time_value": "Int64",
17
+ "geo_type": str,
18
+ "geo_value": str,
19
+ "value": float,
20
+ "stderr": float,
21
+ "sample_size": float,
22
+ "missing_value": "Int8",
23
+ "missing_stderr": "Int8",
24
+ "missing_sample_size": "Int8",
25
+ "issue": "Int64",
26
+ "lag": "Int64",
27
+ "id": "Int64",
28
+ "direction": "Int8",
29
+ "direction_updated_timestamp": "Int64",
30
+ "value_updated_timestamp": "Int64",
31
+}
32
+
33
34
class HighValuesAre(str, Enum):
35
bad = "bad"
36
good = "good"
0 commit comments