wrangle icon indicating copy to clipboard operation
wrangle copied to clipboard

AttributeError: module 'wrangle' has no attribute 'mean_zero'

Open Libardo1 opened this issue 5 years ago • 1 comments

From talos tutorial, Breath Cancer Example with Functional Model

then we load the dataset

x, y = ta.datasets.breast_cancer()

and normalize every feature to mean 0, std 1

x = wr.mean_zero(pd.DataFrame(x)).values


AttributeError Traceback (most recent call last) in 3 4 # and normalize every feature to mean 0, std 1 ----> 5 x = wr.mean_zero(pd.DataFrame(x)).values

AttributeError: module 'wrangle' has no attribute 'mean_zero'

Any hint?

TIA,

Libardo1 avatar Jul 15 '19 19:07 Libardo1

Just change wr.mean_zero() by wr.df_rescale_meanzero()

cda-gti-upm avatar Jul 29 '19 15:07 cda-gti-upm