返回熊猫直方图中的最大bin值[重复]

问题描述 投票:0回答:1

这个问题在这里已有答案:

我对Python非常陌生,我正在寻找解决问题的方法。特别是,我需要在历史记录中返回二进制文件的最大值...而且我对如何继续进行了处理。我的数据帧是一个pandas数据帧:

import pandas as pd
import numpy as np
import matplotlib.pyplot as plt

df = pd.read_csv(filename)

bin_array = np.linspace(start=0., stop=10., num=150)
df.series.hist(bins=bin_array)

提前致谢。

python pandas matplotlib histogram
1个回答
1
投票

你可能想直接使用numpy的histogram函数。这是大熊猫在幕后制作剧情的原因。

bin_array = np.linspace(start=0., stop=10., num=150)
counts, bins = np.histogram(df.series, bins=bin_array)
© www.soinside.com 2019 - 2024. All rights reserved.