Replies: 1 comment 1 reply
-
The EventSchedule is (a subclass of) a dataframe. So there's probably no need to convert it to one first? And your problem then more generally is, how to render an image from a dataframe. But I can't really help you there, as I've never done that. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hi All,
I want to export the data from fastf1.get_event_schedule(2022) to a png file. I can select the columns (Country, EventDate, EventFormat etc) separately, but is there a way to either put this data in a dataframe or place it in a transparant png in a quick and easy way?
I'm fairly new to both python and FastF1, but I am really trying to get into this stuff and I am trying to figure out what the <class 'fastf1.events.EventSchedule'> comprehends.
OR... I could just do a
ff1.get_event_schedule(2022).to_dict()
and convert that to a dataframe to work with.... So I think I just answered my own question.Beta Was this translation helpful? Give feedback.
All reactions