版本 0.7.3 (2012年4月12日)#
这是从0.7.2版本的一个小更新,修复了许多小错误并添加了一些不错的新功能。还有一些API更改需要注意;这些更改应该不会影响很多用户,我们倾向于称它们为“错误修复”,尽管它们确实构成了行为上的变化。请参阅 完整发布说明 或在GitHub上的问题跟踪器以获取完整列表。
新功能#
新的 固定宽度文件读取器,
read_fwf
新的 scatter_matrix 函数用于制作散点图矩阵
from pandas.tools.plotting import scatter_matrix
scatter_matrix(df, alpha=0.2) # noqa F821
为 Series 和 DataFrame 的
plot
方法添加stacked
参数,用于 堆积条形图。
df.plot(kind="bar", stacked=True) # noqa F821
df.plot(kind="barh", stacked=True) # noqa F821
将 log x 和 y 缩放选项 添加到
DataFrame.plot
和Series.plot
为 Series 和 DataFrame 添加
kurt
方法以计算峰度
NA 布尔比较 API 更改#
恢复了一些对非数值系列中 NA 值(通常表示为 NaN
或 None
)处理方式的更改:
In [1]: series = pd.Series(["Steve", np.nan, "Joe"])
In [2]: series == "Steve"
Out[2]:
0 True
1 False
2 False
Length: 3, dtype: bool
In [3]: series != "Steve"
Out[3]:
0 False
1 True
2 True
Length: 3, dtype: bool
在比较中,NA / NaN 总是会作为 False
通过,除了 !=
是 True
。在存在 NA 数据的情况下,要非常小心 布尔运算,尤其是取反。如果你担心这一点,你可能希望在布尔数组操作中添加一个显式的 NA 过滤器:
In [4]: mask = series == "Steve"
In [5]: series[mask & series.notnull()]
Out[5]:
0 Steve
Length: 1, dtype: object
虽然在比较中传播 NA 可能对某些用户来说看起来是正确的行为(并且你可以在纯技术基础上争论这是正确的事情),但评估认为在所有地方传播 NA,包括在数值数组中,会给用户带来大量问题。因此,采取了“实用性胜过纯粹性”的方法。这个问题可能在未来的某个时候重新审视。
其他 API 更改#
当在分组的 Series 上调用 apply
时,返回值也将是一个 Series,以与 DataFrame 的 groupby
行为更加一致:
In [6]: df = pd.DataFrame(
...: {
...: "A": ["foo", "bar", "foo", "bar", "foo", "bar", "foo", "foo"],
...: "B": ["one", "one", "two", "three", "two", "two", "one", "three"],
...: "C": np.random.randn(8),
...: "D": np.random.randn(8),
...: }
...: )
...:
In [7]: df
Out[7]:
A B C D
0 foo one 0.469112 -0.861849
1 bar one -0.282863 -2.104569
2 foo two -1.509059 -0.494929
3 bar three -1.135632 1.071804
4 foo two 1.212112 0.721555
5 bar two -0.173215 -0.706771
6 foo one 0.119209 -1.039575
7 foo three -1.044236 0.271860
[8 rows x 4 columns]
In [8]: grouped = df.groupby("A")["C"]
In [9]: grouped.describe()
Out[9]:
count mean std min 25% 50% 75% max
A
bar 3.0 -0.530570 0.526860 -1.135632 -0.709248 -0.282863 -0.228039 -0.173215
foo 5.0 -0.150572 1.113308 -1.509059 -1.044236 0.119209 0.469112 1.212112
[2 rows x 8 columns]
In [10]: grouped.apply(lambda x: x.sort_values()[-2:]) # top 2 values
Out[10]:
A
bar 1 -0.282863
5 -0.173215
foo 0 0.469112
4 1.212112
Name: C, Length: 4, dtype: float64
贡献者#
总共有15个人为这次发布贡献了补丁。名字后面带有“+”的人是第一次贡献补丁。
Abraham Flaxman +
Adam Klein
Andreas H. +
Chang She
Dieter Vandenbussche
Jacques Kvam +
K.-Michael Aye +
Kamil Kisiel +
Martin Blais +
Skipper Seabold
Thomas Kluyver
Wes McKinney
Wouter Overmeire
Yaroslav Halchenko
lgautier +