gramm
gramm copied to clipboard
Gramm is a complete data visualization toolbox for Matlab. It provides an easy to use and high-level interface to produce publication-quality plots of complex data with varied statistical visualizatio...
Hi Pier, Personally, I had the wish for some extra features (do you have a general wish/todo list somewhere?): - Facet axes spacing/margin options (I wanted tighter custom spacing, per...
I tested it and I don't think this breaks anything. Two changes: I copied setylim from stat_summary into stat_smooth so it works for both I added string support to unique_and_sort.m...
Hi, I found something wrong in error bar. For example, `x=abs([-1:0.4:0,-1:0.4:1,0.2:0.4:1]); y=rand(1,12); err=rand(1,12); tag0=cell(3,1);tag0=cellfun(@(x) 'a',tag0,'UniformOutput',false); tag1=cell(3,1);tag1=cellfun(@(x) 'b',tag1,'UniformOutput',false); tag=[tag1;tag0;tag0;tag1]; g=gramm('x',x,'y',y,'ymin',y-err,'ymax',y+err); g.facet_wrap(tag); g.geom_line; g.geom_interval('geom','errorbar'); g.draw;` You can see that the errorbar do...
(Not needed for JOSS review) directly related to #31 I really like the package 🙂 but I think it makes a whole lot of sense to me since I use...
Hi Pierre, I was wondering whether you foresee any method which would make me able to automatically group observations into "individuals", in order to have correct errorbars when plotting for...
I very much hope this is the last time I bother you on here, Pierre. If I may, just a couple more questions: 1) I have several data points at...
Hi, I'd like to brush and link data points between different plots. However if I use for example gplot.geom_point() I'm not able to brush data as the data points don't...
Hi! Great toolbox, I am using it heavily in https://github.com/unfoldtoolbox/unfold. I right now ran into a problem: I am making use of the automatic matrix expansion for "y" with a...
Dear Pier, I have repeated measures data from subjects across multiple conditions, that I'd like to show as raw data points + boxplots. I am using a combination of g.stat_boxplot...
It would be fantastic if, together with stat_summary or some of the other stat functions, inferential statistics could be plotted. The easiest would be to automatically plot little stars (e.g....