phausamann / sklearn-xarray

Metadata-aware machine learning.
http://bit.do/sklearn-xarray
BSD 3-Clause "New" or "Revised" License
102 stars 12 forks source link

Standardize internal method names #35

Open phausamann opened 6 years ago

phausamann commented 6 years ago

For example, the EstimatorWrapper calls _transform for each variable/DataArray whereas the transformers in the preprocessing module call _transform for each group and _transform_var for each variable/DataArray.

There should be a unified syntax: _transform_array for variables/DataArrays and _transform_group for groups.