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
The spec has an offset property on the Column in case you need to take this into account about how to interpret the buffer (eg in case of slices). It would be good to add tests for this.
(for example, pandas currently ignores this)
The text was updated successfully, but these errors were encountered:
Yeah, I'd hope at least we could manipulate columns with kinds of offset values for smoke testing. It's just manipulating offsets seems pretty tricky, as it requires a thorough understanding of how a given protocol adopter makes interchange dataframes/columns in the first place. My initial impression is I won't get around to this given the effort-to-reward.
I am not sure we should be manipulating offsets of column objects ourselves (i.e. directly in the tests), as that would indeed get complicated. But this could also be covered in roundtrip tests. Basically, what I would expect is something like:
The spec has an
offset
property on the Column in case you need to take this into account about how to interpret the buffer (eg in case of slices). It would be good to add tests for this.(for example, pandas currently ignores this)
The text was updated successfully, but these errors were encountered: