从该数据集中选择优化配置的最佳方法是什么?
数据挖掘
优化
排行
2022-03-01 19:06:42
1个回答
我还没有执行下面的代码,但我会做这样的事情,
df.loc[(df['Lighting Levela (Max)'] == max(df['Lighting Levela (Max)']) &
(df['Energy Consumption (Min)'] == min(df['Energy Consumption (Max)']) &
(df['Visual Comfort (Max)'] == max(df['Visual Comfort (Max)']) &
(df['Thermal Comfort (Max)'] == max(df['Thermal Comfort (Max)']) &
(df['CO2 levels (Min)'] == min(df['CO2 levels (Max)']), :)
