qmplot
qmplot copied to clipboard
ax parameter does not work
when ax pass to the function, return is empty.
I have encountered the same issue. Only the first plot (ax1) shows correctly when I do the following, while ax2 is blank.
fig, (ax1, ax2) = plt.subplots(2)
qqplot(data1, ax=ax1)
qqplot(data2, ax=ax2)
Thanks for the issues, I will fix this ASAP
Fixed, thanks!