我有一个数据框,其中包含超过1000行200列,如下所示:
my_data:
ID, f1, f2, .. ,f200 Target
x1 3 0, .. ,2 0
x2 6 2, .. ,1 1
x3 5 4, .. ,0 0
x4 0 5, .. ,18 1
.. . ., .. ,.. .
xn 13 0, .. ,4 0
首先,我想自动将这些功能(f1-f200)离散化为四个组,分别为no
,low
,medium
和high
,以便使在它们的列中有零(例如,f2中的x1包含0,xn中的相同..)应标记为“ no”,其余应分类为低,中和高。
我发现了:
pd.cut(my_data,3, labels=["low", "medium", "high"])
但是,这不能解决问题。有想法吗?
答案 0 :(得分:1)
因此,您需要创建动态bin并迭代列以获取此信息。可以通过以下方式完成:
new_df = pd.DataFrame()
for name,value in df1.iteritems(): ##df1 is your dataframe
bins = [-np.inf, 0,df1[name].min()+1,df1[name].mean(), df1[name].max()]
new_df[name] = pd.cut(df1[name], bins=bins, include_lowest=False, labels=['no','low', 'mid', 'high'])
答案 1 :(得分:0)
使用np.select
# Iterate over the Dataframe Columns i.e. f1-f200
for col in df.columns:
# Define your Condition
conditions = [
(df[col] == 0),
(df[col] == 1),
(df[col] == 2),
(df[col] > 3)]
# Values you want to map
choices = ['no','Low', 'Medium', 'High']
df[col] = np.select(conditions, choices, default='Any-value')