æ¨æºåã¨ä¸å¿å
Pythonã§æ¨æºåã¨ãä¸å¿åã¯ã©ããã£ã¦ãããã ããã¨ãã話ã§ãï¼
çµè«ã ãæ¸ãã¾ãï¼ï¼ãã®ãã¡åéãè¦ã¦å çãã¾ãï¼
ãã®ãã¼ã¸ã§ã¯ãããããã¼ã¿ã使ãã¾ã
æ¨æºå
from scipy import stats x = df.iloc[:, 2:6].apply(stats.zscore, axis=0) x.head()
æ¨æºåããã¦ãããã調ã¹ã¾ã
å¹³åã»ã¼0ï¼åæ£(æ¨æºåå·®)ã»ã¼1
ä¸å¿å
y = df.iloc[:, 1].apply(lambda v:v-df.iloc[:, 0].mean() ).astype(float) y.head()