ContextLab/quail

feature request: row populated with standard deviations for fried egg object

ryankirkpatrick57 opened this issue · 5 comments

For people who want to make their own error bars, in each column of the fried egg object below the mean, it would be helpful to also have the standard deviation.

Hi @ryankirkpatrick57, thanks for the request! Is this something you’d be interested in helping out with?

I would not be interested in helping out with this. I thought it would just be nice to have this idea on your radar as you look to improve quail. I have been using quail in jupyter notebook, so my inelegant workaround has been to calculate the standard deviation in the relevant analysis helper function, print those values to the standard output, and then can copy and paste the values into the relevant notebook cell.

ok-- thanks for the information and we'll keep this in mind as we continue to develop quail.

hey @ryankirkpatrick57, quail wraps seaborn for creating plots, and seaborn allows you to plot error bars in sd units by passing ci='sd'. e.g.:

quail.plot(analyzed_data, ci='sd')

Ah, yes. That is also a nice workaround. Thank you for letting me know!