Replies: 2 comments
-
Sorry, catplot does not support precomputed error bars. |
Beta Was this translation helpful? Give feedback.
0 replies
-
In case anybody else runs into this here is an alternative. I really wish catplot supported asymmetric error bars. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
pandas 1.5.3
matplotlib 3.7.1
seaborn 0.12.2
My code and part of the data is shown below. I am trying to plot the errorbars precomputed in the dataframe
(val_lo,val_hi)
. It seems thatsns.catplot
withkind=bar
has support usingerrorbar
as mentioned here - how do I get that to work? Or any guidance into how to use matplotlib errorbar?My datasets have millions of observations, with output from several models which are compared and running 1000bootstrap iterations parallelized using ThreadPool (with 20 threads) takes over an hour. Hence I prefer pre-computing and plotting.
Beta Was this translation helpful? Give feedback.
All reactions