From: Jason Garcia on 3 Aug 2010 10:50 I'm trying to change the x-axis of a control chart that I am generating an XBAR plot. I have 131 subgroups and would like to label each one individually. I think it has something to do with 'parent' but I am unfamiliar with it.
From: Tom Lane on 3 Aug 2010 11:05 > I'm trying to change the x-axis of a control chart that I am generating an > XBAR plot. I have 131 subgroups and would like to label each one > individually. I think it has something to do with 'parent' but I am > unfamiliar with it. Jason, from your description it sounds like you want to do this: x = randn(131,4); controlchart(x) set(gca,'xtick',1:131) However, it is likely you won't be happy with the results. Maybe if you also look into the 'XMinorTick' option you will be happier. -- Tom
|
Pages: 1 Prev: Problem with publishing and debugging Next: xlabel not visible when using subplot |