现在,我想用0-1之间的值进行标准化。我想执行“差分”归一化,左边面板值在0-0.5之间归一化,右面板归一化为0.5到1,所有内容都在同一列中。我该怎么做?
它不漂亮,但有效。
df = pd.DataFrame({'dataExample': [0,1,2,1001,1002,1003]})
less1000 = df.loc[df['dataExample'] <= 1000]
df.loc[df['dataExample'] <= 1000, 'datanorm'] = less1000['dataExample'] / (less1000['dataExample'].max() * 2)
high1000 = df.loc[df['dataExample'] > 1000]
df.loc[df['dataExample'] > 1000, 'datanorm'] = ((high1000['dataExample'] - high1000['dataExample'].min()) / ((high1000['dataExample'].max() - high1000['dataExample'].min()) * 2) + 0.5)
output:
dataExample datanorm
0 0 0.00
1 1 0.25
2 2 0.50
3 1001 0.50
4 1002 0.75
5 1003 1.00
假设您的数据帧名为df
,保存数据的列称为data
,保存计数的列称为counts
。然后你可以做这样的事情:
df['data_norm'] = df['data'].loc[df['counts']<=1000] / 1000 / 2
df['data_norm'] = df['data'].loc[df['counts']>1000] / df['counts'].max() + 0.5
......假设我理解正确。但我认为我既不正确理解你的问题,也不能解决你的问题。