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
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,
The text was updated successfully, but these errors were encountered:
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,
The text was updated successfully, but these errors were encountered: