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 length of point_columns is fixed to three which is outdated now because we have n dimensional fields.
@point_columns.setterdefpoint_columns(self, val):
iflen(val) !=3:
msg=f"Cannot change column names with a list of lenght {len(val)}."raiseValueError(msg)
self.data=self.data.rename(dict(zip(self.point_columns, val)), axis=1)
self._point_columns=list(val)
The text was updated successfully, but these errors were encountered:
The length of
point_columns
is fixed to three which is outdated now because we have n dimensional fields.The text was updated successfully, but these errors were encountered: