让我们看一个例子:
import pandas as pd
import numpy as np
np.random.seed(1)
def setup(regular=True):
N = 10
x = np.arange(N)
a = np.arange(N)
b = np.arange(N)
if regular:
timestamps = np.linspace(0, 120, N)
else:
timestamps = np.random.uniform(0, 120, N)
df = pd.DataFrame({
'Category': [True]*N + [False]*N,
'Time': np.hstack((timestamps, timestamps)),
'Value': np.hstack((a,b))
})
return df
df = setup(regular=False)
df.sort(['Category', 'Time'], inplace=True)
所以 DataFramedf
看起来像这样:
In [4]: df
Out[4]:
Category Time Value Result
12 False 0.013725 2 1.000000
15 False 11.080631 5 0.500000
14 False 17.610707 4 0.333333
16 False 22.351225 6 0.250000
13 False 36.279909 3 0.400000
17 False 41.467287 7 0.333333
18 False 47.612097 8 0.285714
10 False 50.042641 0 0.250000
19 False 64.658008 9 0.125000
11 False 86.438939 1 0.333333
2 True 0.013725 2 1.000000
5 True 11.080631 5 0.500000
4 True 17.610707 4 0.333333
6 True 22.351225 6 0.250000
3 True 36.279909 3 0.400000
7 True 41.467287 7 0.333333
8 True 47.612097 8 0.285714
0 True 50.042641 0 0.250000
9 True 64.658008 9 0.125000
1 True 86.438939 1 0.333333
现在,复制@herrfz,让我们定义
def between(a, b):
def between_percentage(series):
return float(len(series[(a <= series) & (series < b)])) / float(len(series))
return between_percentage
between(1,3)
是一个函数,它以 Series 作为输入并返回位于半开区间中的元素的分数[1,3)
。例如,
In [9]: series = pd.Series([1,2,3,4,5])
In [10]: between(1,3)(series)
Out[10]: 0.4
现在我们将使用我们的 DataFramedf
和 group by Category
:
df.groupby(['Category'])
对于 groupby 对象中的每个组,我们将要应用一个函数:
df['Result'] = df.groupby(['Category']).apply(toeach_category)
函数 ,toeach_category
将一个(子)DataFrame 作为输入,并返回一个 DataFrame 作为输出。整个结果将分配给df
被调用的新列Result
。
现在究竟必须toeach_category
做什么?如果我们这样写toeach_category
:
def toeach_category(subf):
print(subf)
然后我们看到每个subf
都是一个 DataFrame,比如这个(什么时候Category
是假的):
Category Time Value Result
12 False 0.013725 2 1.000000
15 False 11.080631 5 0.500000
14 False 17.610707 4 0.333333
16 False 22.351225 6 0.250000
13 False 36.279909 3 0.400000
17 False 41.467287 7 0.333333
18 False 47.612097 8 0.285714
10 False 50.042641 0 0.250000
19 False 64.658008 9 0.125000
11 False 86.438939 1 0.333333
我们想要获取 Times 列,并为每个 time应用一个函数。这是通过以下方式完成的applymap
:
def toeach_category(subf):
result = subf[['Time']].applymap(percentage)
该函数percentage
将时间值作为输入,并返回一个值作为输出。该值将是值在 1 和 3 之间的行的分数。applymap
非常严格:percentage
不能接受任何其他参数。
给定一个 time t
,我们可以使用以下方法从中选择时间在半开区间内的Value
s :subf
(t-60, t]
ix
subf.ix[(t-60 < subf['Time']) & (subf['Time'] <= t), 'Value']
因此,我们可以Values
通过应用找到介于 1 和 3 之间的百分比between(1,3)
:
between(1,3)(subf.ix[(t-60 < subf['Time']) & (subf['Time'] <= t), 'Value'])
现在请记住,我们需要一个函数percentage
作为t
输入并返回上述表达式作为输出:
def percentage(t):
return between(1,3)(subf.ix[(t-60 < subf['Time']) & (subf['Time'] <= t), 'Value'])
但是请注意,percentage
取决于subf
,并且我们不允许将subf
topercentage
作为参数传递(同样,因为applymap
非常严格)。
那么我们如何摆脱这种困境呢?解决方案是定义percentage
inside toeach_category
。Python 的作用域规则说,subf
首先在 Local 作用域中查找裸名称 like,然后是 Enclosure 作用域、Global 作用域,最后是 Builtin 作用域。当percentage(t)
被调用并且 Python 遇到 时subf
,Python 首先在 Local 范围内查找 的值subf
。由于subf
不是 中的局部变量percentage
,Python 在函数的封闭范围内查找它toeach_category
。它在subf
那里找到。完美的。这正是我们所需要的。
所以现在我们有了我们的功能toeach_category
:
def toeach_category(subf):
def percentage(t):
return between(1, 3)(
subf.ix[(t - 60 < subf['Time']) & (subf['Time'] <= t), 'Value'])
result = subf[['Time']].applymap(percentage)
return result
把这一切放在一起,
import pandas as pd
import numpy as np
np.random.seed(1)
def setup(regular=True):
N = 10
x = np.arange(N)
a = np.arange(N)
b = np.arange(N)
if regular:
timestamps = np.linspace(0, 120, N)
else:
timestamps = np.random.uniform(0, 120, N)
df = pd.DataFrame({
'Category': [True] * N + [False] * N,
'Time': np.hstack((timestamps, timestamps)),
'Value': np.hstack((a, b))
})
return df
def between(a, b):
def between_percentage(series):
return float(len(series[(a <= series) & (series < b)])) / float(len(series))
return between_percentage
def toeach_category(subf):
def percentage(t):
return between(1, 3)(
subf.ix[(t - 60 < subf['Time']) & (subf['Time'] <= t), 'Value'])
result = subf[['Time']].applymap(percentage)
return result
df = setup(regular=False)
df.sort(['Category', 'Time'], inplace=True)
df['Result'] = df.groupby(['Category']).apply(toeach_category)
print(df)
产量
Category Time Value Result
12 False 0.013725 2 1.000000
15 False 11.080631 5 0.500000
14 False 17.610707 4 0.333333
16 False 22.351225 6 0.250000
13 False 36.279909 3 0.200000
17 False 41.467287 7 0.166667
18 False 47.612097 8 0.142857
10 False 50.042641 0 0.125000
19 False 64.658008 9 0.000000
11 False 86.438939 1 0.166667
2 True 0.013725 2 1.000000
5 True 11.080631 5 0.500000
4 True 17.610707 4 0.333333
6 True 22.351225 6 0.250000
3 True 36.279909 3 0.200000
7 True 41.467287 7 0.166667
8 True 47.612097 8 0.142857
0 True 50.042641 0 0.125000
9 True 64.658008 9 0.000000
1 True 86.438939 1 0.166667