-
Notifications
You must be signed in to change notification settings - Fork 398
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Send dataframe API #7204
Comments
If I understand correctly, your proposed API would result in the following data being logged:
both on the Is that correct? In general, having a dataframe-based API is very good fit for our new columnar stuff. I see at least two points here:
|
Creating subentities seems to be rhe easiest way. I can't see how the second option would work, I don't know enough about the inner workings of rerun. But maybe there is a third if there was a datatframe entity type? Or is that against the design principles? |
Describe the solution you'd like
I'd like to send dataframes (e.g. pandas and/or arrow) at once. They have the same timeline but multiple columns (e.g. time, x, y, z), whereas most often the index is the time either in us, seconds or pd.TimedeltaIndex.
Great would be something like:
Describe alternatives you've considered
Sending each column in separate calls. This works but might generate more overhead then necessary.
The text was updated successfully, but these errors were encountered: