Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 Pycaret 设置函数中选择特定列进行规范化?我不想将规范化函数应用于我的整个数据框,只是几列。
您没有显示任何代码,但我假设您可以在 Pycaret 设置功能之前访问数据框。在这种情况下,您可以在设置之前对列进行规范化。
colsNorm = ['Col1','Col2'] dataframe[colsNorm] = dataframe[colsNorm].apply(lambda x: (x - x.min()) / (x.max() - x.min()))