Closed
Description
Hi, I'd like to create a 2d bin plot of this dataset:
But as soon as I try to plot it:
plot = (
pn.ggplot(df, pn.aes(x="score", y="residuals"))
+ pn.stat_bin_2d(binwidth=0.1)
)
plot
However, I know that there should be points at score == 0
:
plot = (
pn.ggplot(df, pn.aes(x="score", y="residuals"))
+ pn.geom_point()
)
plot
What is the issue here?