How do I get some part of my boxplot labels italic? I can not change the Interpreter to 'tex' somehow? Why? How can I work around?
5 次查看(过去 30 天)
显示 更早的评论
I kind of have the same problem, which was asked here:
I want to have some parts of labels for boxplot italic but it just writes "\it" out. Somehow I cannot change the Interpreter to 'text'.
Also why is there no proper handle for the boxplot function like for any other plot?
This solution does not work! (MATLAB R2017a) The labels are still NOT italic and \it is still written there.
dados = rand(100,2);
boxplot(dados,'labels',{'\bf\it{IDEB}_2_0_0_7','\bf Efficiencies'})
h = findobj(gca, 'type', 'text');
set(h, 'Interpreter', 'tex');
0 个评论
采纳的回答
Star Strider
2019-4-21
dados = rand(100,2);
boxplot(dados,'labels',{'\bf\it{IDEB}__{2007}','\bf Efficiencies'});
set(gca, 'TickLabelInterpreter', 'tex');
That worked when I tested it.
2 个评论
Star Strider
2019-4-23
As always, my pleasure.
A handle to boxplot just returns the data it plots, and nothing about the statistics or anything else that it calculates. The labels are simply axis tick labels.
更多回答(1 个)
Tom Cook
2019-4-23
编辑:Tom Cook
2019-4-23
1 个评论
Star Strider
2019-4-23
The information on the boxplot is actually availble. It’s not obvious, and I had to dig for it.
Example —
dados = rand(100,2);
hb = boxplot(dados,'labels',{'\bf\it{IDEB}_{2007}','\bf Efficiencies'});
set(gca, 'TickLabelInterpreter', 'tex');
hbp = get(gca);
BoxPlotInfo = hbp.Children.Children
producing (in this instance):
BoxPlotInfo =
14×1 Line array:
Line (Outliers)
Line (Outliers)
Line (Median)
Line (Median)
Line (Box)
Line (Box)
Line (Lower Adjacent Value)
Line (Lower Adjacent Value)
Line (Upper Adjacent Value)
Line (Upper Adjacent Value)
Line (Lower Whisker)
Line (Lower Whisker)
Line (Upper Whisker)
Line (Upper Whisker)
Then to get the first box information:
FirstBox = BoxPlotInfo(5)
I didn’t dig deeper than that.
I invite you to explore those properties at your leisure.
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!