How can I change the scale of my boxplot
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Tania
el 22 de Jul. de 2014
Comentada: Tania
el 23 de Jul. de 2014
Hey! I have tried a few times, but somehow I can not change the y-axis scale of my boxplot. At the moment it has 1 2 3 ... x 10^5 .. I would like to display the number like 100000 or 5000000 without this 1 x 10^5. Can anyone help me?Thank you!
0 comentarios
Respuesta aceptada
Michael Haderlein
el 22 de Jul. de 2014
Dear Tania,
as far as I know, there's no dynamic way to do so. But you can use
set(gca,'yticklabel',num2str(get(gca,'ytick')'))
to set it manually. When you change the range of the axis (by adding further points), you should first reset the yticklabelmode and then reset the labeling:
set(gca,'yticklabelmode','auto')
set(gca,'yticklabel',num2str(get(gca,'ytick')'))
Best regards,
Michael
Más respuestas (1)
Michael Haderlein
el 23 de Jul. de 2014
First plot your data and then set the labeling. It should then conserve the limits.
Ver también
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!