Borrar filtros
Borrar filtros

How to get rid of lsline in regression plot?

1 visualización (últimos 30 días)
Rita
Rita el 15 de Abr. de 2016
Respondida: Ced el 15 de Abr. de 2016
I have a regression plot with a blue lsline which I want to eliminate it but I don't know how.Thanks for any suggestion.

Respuesta aceptada

Ced
Ced el 15 de Abr. de 2016
N = 15;
x = linspace(0,5,N)';
y = 1.3*x + 0.5*randn(N,1);
% 0. plot data and lsline
plot(x,y,'o')
lsline
% 1. find handle to lsline
h_lsline = findobj(get(gca,'Children'),'Tag','lsline');
% 2. switch off, i.e. remove lsline
set(h_lsline,'Visible','off');
Cheers

Más respuestas (0)

Categorías

Más información sobre Descriptive Statistics en Help Center y File Exchange.

Etiquetas

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by