How to change corrplot line and scatter dots properties?
13 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
dila suay
el 1 de En. de 2023
Comentada: dila suay
el 3 de En. de 2023
Hi Eveyone,
I would like to change the properties of corrplot, like linewidth or color of the dot. How can I do that?
Also, is there any way to save only 1 plot in corrplot?
Thank you
0 comentarios
Respuesta aceptada
Bora Eryilmaz
el 1 de En. de 2023
Editada: Bora Eryilmaz
el 2 de En. de 2023
Get the handle of the plot out and modify the desired properties:
[~,~,h] = corrplot(rand(100,2))
h(1,2)
h(1,2).Color = 'r';
h(1,2).MarkerSize = 4;
The regression line's handle can be found as:
h(1,2).Parent.Children
L = h(1,2).Parent.Children(2);
L.LineWidth = 3;
4 comentarios
Más respuestas (0)
Ver también
Categorías
Más información sobre Linear and Nonlinear Regression en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!