wrangle
wrangle copied to clipboard
AttributeError: module 'wrangle' has no attribute 'mean_zero'
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)
AttributeError: module 'wrangle' has no attribute 'mean_zero'
Any hint?
TIA,
Just change wr.mean_zero() by wr.df_rescale_meanzero()