FutureWarning: Dropping of nuisance columns in DataFrame reductions (with 'numeric_only=None') is deprecated; in a future version this will raise TypeError. Select only valid columns before calling the reduction. features = (features - features.mean()) / features.std()
时间: 2024-03-31 11:38:23 浏览: 90
tenon:页面可视化搭建工具。A visual dragging-and-dropping page builder base on Vue. what you see is what you get
这是一个警告信息,意思是在DataFrame的计算过程中,如果不指定numeric_only参数,将来会报错,建议在进行计算前先选择有效的列。在这段代码中,features.mean()计算了所有列的均值,features.std()计算了所有列的标准差,如果DataFrame中有非数值型的列,这些列会被忽略,但是这种忽略将在未来的版本中被禁止。因此,建议在进行计算前先选择有效的数值型列,例如使用features.select_dtypes(include=[np.number])选取数值型列进行计算。
阅读全文