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
This is one step too many. Methods currently modify datasets in place. What's needed is a way to return a new dataset with an inplace arg similar to what happens in pandas. So the above would become:
Currently, it is slightly tedious to create new datasets based on existing ones. This requires you to use the
copy
method.For example, if you wanted to create a new dataset so that you could plot the spatial average of a dataset, you would have to do this:
This is one step too many. Methods currently modify datasets in place. What's needed is a way to return a new dataset with an inplace arg similar to what happens in pandas. So the above would become:
The text was updated successfully, but these errors were encountered: