Skip to content

Tag: seaborn

Seaborn, how sum time in barplot?

pandas output: and on python: i am trying do barplot in seaborn, but i get error numeric. How use sum time value in barplot seaborn? Answer You need to convert value series to a numeric data type to plot it. For example, assuming that value has a timedelta dtype. You can create another column in your datafram…

Animation issue in Python

I want the green rectangle to not disappear as it moves from one value to another in matrix b. For example, the rectangle is around 0.24671953. Then the rectangle stays on this value. Then another rectangle appears onto the next value which is 0.25959473. Then another rectangle appears on 0.41092171, with the…

Plot confidence interval of a duration series

I measured the duration of 6000 requests. I got now an Array of 6000 elements. Each element represents the duration of a connection request in milliseconds. [3,2,2,3,4,2,2,4,2,3,3,4,2,4,4,3,3,3,4,3,2,3,5,5,2,4,4,2,2,2,3,5,3,2,2,3,3,3,5,4……..] I want to plot the confidence interval in Python and in…