We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello, for your reference, the example provided in the documentation for plotting a histogram doesn't work. I had to modify it as follows:
hist = distogram.histogram(h) hist =(hist[0], hist[1][0:len(hist[0])]) df_hist = pd.DataFrame(np.array(hist).T, columns=["count", "bin"]) print(df_hist) fig = px.bar(df_hist, x="bin", y="count", title="distogram") fig.update_layout(height=300) fig.write_image("hist.png")
The text was updated successfully, but these errors were encountered:
yes, I need to update the readme and the documentation. The examples have been updated when we changed the internal representation.
Sorry, something went wrong.
No branches or pull requests
Hello, for your reference, the example provided in the documentation for plotting a histogram doesn't work.
I had to modify it as follows:
The text was updated successfully, but these errors were encountered: