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
Pandas has added attrs to their objects. We should decide on what to do with them in the DataArray constructor. Many tests fail if we don't handle this case explicitly.
Not sure what we want to do about these attributes in the long term. One option would be to pop the name attribute, assign to DataArray.name and keep the rest as DataArray.attrs? But what if name clashes with the provided name?
Not sure what we want to do about these attributes in the long term.
I like the idea of using them the same way xarray does for metadata. The next step would be to get pandas to add .encoding and then they could do mask_and_scale on their read_* methods :).
Continuing discussion form #3491.
Pandas has added
attrs
to their objects. We should decide on what to do with them in the DataArray constructor. Many tests fail if we don't handle this case explicitly.@dcherian:
@max-sixty:
The text was updated successfully, but these errors were encountered: