Python|熊猫 Panel.clip_upper()
在 Pandas 中,Panel 是一个非常重要的 3D 数据容器。 3 个轴的名称旨在为描述涉及面板数据的操作提供一些语义含义,特别是面板数据的计量经济学分析。
Panel.clip_upper()
函数用于返回输入的副本,其中值高于给定值的值被截断。
Syntax: Panel.clip_upper(threshold, axis=None, inplace=False)
Parameters:
threshold : float or array_like
axis : Align object with threshold along the given axis.
inplace : Whether to perform the operation in place on the data
Returns: same type as input.
创建面板:
# importing pandas module
import pandas as pd
import numpy as np
df1 = pd.DataFrame({'a': ['Geeks', 'For', 'geeks'],
'b': np.random.randn(3)})
data = {'item1':df1, 'item2':df1}
# creating Panel
panel = pd.Panel.from_dict(data, orient ='minor')
print(panel, "\n")
输出:
代码 #1:使用 clip_upper()
# importing pandas module
import pandas as pd
import numpy as np
df1 = pd.DataFrame({'a': ['Geeks', 'For', 'geeks'],
'b': np.random.randn(3)})
data = {'item1':df1, 'item2':df1}
# creating Panel
panel = pd.Panel.from_dict(data, orient ='minor')
print(panel, "\n")
print(panel['b'], '\n')
df2 = pd.DataFrame({'b': np.random.randn(5)})
print(panel['b'].clip_upper(df2['b'], axis = 0))
输出:
代码 #2:使用 clip_upper()
# creating an empty panel
import pandas as pd
import numpy as np
data = {'Item1' : pd.DataFrame(np.random.randn(7, 4)),
'Item2' : pd.DataFrame(np.random.randn(4, 5))}
pen = pd.Panel(data)
print(pen['Item1'], '\n')
p = pen['Item1'][0].clip_upper(np.random.randn(7))
print(p)
输出: