formats
FormatSpec
dataclass
Specification for a data format
Source code in hdxms_datasets/formats.py
44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
|
convert(df)
Convert DataFrame to OpenHDX format
Source code in hdxms_datasets/formats.py
60 61 62 |
|
is_aggregated(df=None)
Check if DataFrame is aggregated
Source code in hdxms_datasets/formats.py
64 65 66 67 68 69 70 71 72 |
|
matches(df)
Check if DataFrame matches this format
Source code in hdxms_datasets/formats.py
54 55 56 57 58 |
|
identify_format(df)
Identify format from DataFrame columns
Source code in hdxms_datasets/formats.py
190 191 192 193 194 195 |
|