VIS: errorbar plotting
See original GitHub issuequoting @jreback
maybe
s = Series
s.plot(error_bar = [-1,1])
equiv to:
df = DataFrame(dict(s = s, top = s.std(), bot = -s.std())).plot()
bottom seems the right way to do this…
Issue Analytics
- State:
- Created 10 years ago
- Comments:12 (10 by maintainers)
Top Results From Across the Web
Error Bars
Bar charts and line charts can display vertical errors. Scatter plots can display both vertical and horizontal errors. The image below shows all...
Read more >Bar plots — vis_bar • immunarch
A metadata object. An R dataframe with sample names and their properties, such as age, serostatus or hla. .errorbars. A numeric vector of...
Read more >2D Error Bar Plot Helper VI - NI - National Instruments
2D Error Bar Plot Helper VI ... Graphs a plot that displays the percentage or vector of error at each point above and...
Read more >Veusz 15: Representing error in data - YouTube
Practical Data Vis. Practical Data Vis ... In this video, we show how we can use error bars to show error in data...
Read more >python matplotlib errorbar legend picking - Stack Overflow
gives you the Line2D objects used in the legend. With errorbar plots, however, leg.get_lines() returns an empty list. This kind of makes sense ......
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
It would be also great if something like this could work:
Or any variation on the subject…
Thanks for the link! I’ll try to get up to speed. In the meantime, I’ve pushed the changes to my github account… https://github.com/gibbonorbiter/pandas.