gpt4 book ai didi

python - pandas.DataFrame : . hist() 与 .plot.hist() 方法

转载 作者:行者123 更新时间:2023-11-28 21:44:22 27 4
gpt4 key购买 nike

在 0.19 的 pandas.DataFrame 上有两种 hist 方法:

DataFrame.hist

DataFrame.plot.hist

起初我以为它们是一样的,但实际上它们有不同的论点。在未来的版本中是否会弃用一个,每个都有不同的用例,或者故事是什么?

最佳答案

我没有给你一个明确的答案。我注意到的一件事是 DataFrame.hist 返回一个轴对象列表,而 DataFrame.plot.hist 只返回一个。例如:

# Making up data
df = pd.DataFrame({'value1': np.random.normal(1, 1, 99),
'value2': [-1]*33 + [0]*33 + [1]*33})

df.hist()

enter image description here

df.plot.hist()

enter image description here

关于python - pandas.DataFrame : . hist() 与 .plot.hist() 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40776252/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com