area.index | population.index
# Index(['Alaska', 'California', 'New York', 'Texas'], dtype='object')
任何没有条目的项目都标为...与Series的情况一样,我们可以使用相关对象的算术方法,并传递任何所需的fill_value来替代缺失的条目。...A.stack().mean()
A.add(B, fill_value=fill)
A B C
0 1.0 15.0 13.5
1 13.0 6.0 4.5
2 6.5 13.5 10.5
下表列出了...,
[-1, -2, 2, 4],
[ 3, -7, 1, 4]])
'''
根据 NumPy 的广播规则(参见“数据计算:广播”),二维数组与其中一行之间的减法是逐行应用的...在 Pandas 中,按照惯例,默认情况下逐行操作:
df = pd.DataFrame(A, columns=list('QRST'))
df - df.iloc[0]
Q R S T
0 0 0