Add 10th and 90th percentile line

조회 수: 27 (최근 30일)
Sarah Yun
Sarah Yun 2019년 12월 17일
댓글: Steven Lord 2019년 12월 17일
Hi,
I have timeseries temperature data for 1950 to 2010
I must add a 10th and 90th percentile trend line on a figure i.e. to highlight all temperatures outside these ranges?
I then want to display the 'outliers' in a table.
What code must I use for this?
% I plot the timeseries
figure
hold on
plot(x, y)
% How can I add the 10th and 90th horizontal line to the figure
% How can I highlight the outliers and put in a table?
I want graph to look like this:
timeseries.jpg
Thank you.

채택된 답변

KALYAN ACHARJYA
KALYAN ACHARJYA 2019년 12월 17일
편집: KALYAN ACHARJYA 2019년 12월 17일
yline here
More
yline(-2.5,'-.b','1oth percentile value');
Same for others, hope you are using R2018b or later version (if not, let me know?)
  댓글 수: 4
Adam Danz
Adam Danz 2019년 12월 17일
That only shows how to draw a horizontal line. You also need to compute the percentiles using
Steven Lord
Steven Lord 2019년 12월 17일
The isoutlier function lets you specify percentiles where any values that fall outside those percentiles are outliers. Since you're calling plot you could set the MarkerIndices property to put markers only on the outliers. See the "Display Markers at Specific Data Points" example on the plot documentation page and use it as a model.

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Preprocessing Data에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by