You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the screenshot from #627 (comment), you can observe a datetime represented in "MMDDHHMM" format.
After reading through #626, I see that this is one of 3 options:
Format options
New Generation Script
New file: flights.py
A comprehensive tool for processing U.S. DOT (BTS) On-Time Flight Performance data with enhanced flexibility and features. Creates date formats used in this repo.
Output Format Options
Format
Example
Description
MMDDHHMM
06142330
June 14, 23:30
ISO
2023/06/14 23:30
ISO-style datetime
Decimal
23.75
23:45 in decimal form
I've done some work looking into the cost of storing the column as a datetime (not a formatted string)
I've been unable to answer questions I had on recreating this dataset
(#642 (comment))
The *safest* options seems to be just updating the output in-place
#641
Originally posted by @dangotbanned in #627
In the screenshot from #627 (comment), you can observe a datetime represented in
"MMDDHHMM"
format.After reading through #626, I see that this is one of 3 options:
Format options
New Generation Script
New file:
flights.py
A comprehensive tool for processing U.S. DOT (BTS) On-Time Flight Performance data with enhanced flexibility and features. Creates date formats used in this repo.
Output Format Options
06142330
2023/06/14 23:30
23.75
I've done some work looking into the cost of storing the column as a datetime (not a formatted string)
Conversion
Size comparison
Open the Chart in the Vega Editor
python
library supportpolars
pandas
pyarrow
Admittedly, we'd still need add (if possible) support for duration/timedelta on the
altair
-side:However, the
date
column is supported, fairly cheap and consistently parsed.That last point is something we've encountered as an issue with other datasets (see vega/altair#3631 (comment))
The text was updated successfully, but these errors were encountered: