I am VERY new to Python, and I am looking for a solution to my problem. In particular, I need to return the max value of the bins in my historgram...and am at a loss on how to proceed. My dataframe is a pandas dataframe as:
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)
Thanks in advance.