Home > database >  Python plot data as bar-candle-like chart
Python plot data as bar-candle-like chart

Time:08-19

I have a dataset with following structue:

[Title,Value_A,Value_B]

Some real world examples are:

[A,0.1,0.3]
[B,0.5,0.6]
[I,1,0.6]
[R,0.6,0.7]

I want a bar-like chart like this sketch:

plot_result


Alternatively as @LuisAlejandro suggested, you can use violin-plot

  • Related