Turn off plot confidence bounds

25 visualizaciones (últimos 30 días)
Alex Leich
Alex Leich el 16 de Sept. de 2018
Comentada: Ranjith Madhana Gopal el 6 de Mayo de 2022
I am trying to plot a simple linear regression over a plot of sea level. I only want trend line but I cannot turn off the confidence bounds on the plot. Any tips?
subplot(3,1,1) plot(SL(503,:),time(1,:)); hold on p = plot(fitlm(SL(503,:), time(1,:))) title(names(503)) xlabel('Sealevel') ylabel('Year')

Respuestas (1)

Naman Chaturvedi
Naman Chaturvedi el 19 de Sept. de 2018
The plot p shows the data, the fit and the confidence handle. The visibility of the confidence bounds lines can be set to 'off' by the following commands:
>> p(end-1,1).Visible='off';
>> p(end,1).Visible='off'

Categorías

Más información sobre Scatter Plots 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!

Translated by