필터 지우기
필터 지우기

How do you plot with missing data?

조회 수: 11 (최근 30일)
econogist
econogist 2022년 4월 8일
편집: Voss 2022년 4월 8일
Suppose I have three vectors: Year=[2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010], X=[1 2 1 4 5 6 7 2 3 5 6], and Y=[1 2 3 4 5 2 3 1 2 3].
I want to plot them on the same graph where 'Year' is on the x-axis. Because the third term in 'Y' is missing data, how do I go about plotting this? Ideally, I'd like the line plot to be disjointed where data is missing.

채택된 답변

Voss
Voss 2022년 4월 8일
편집: Voss 2022년 4월 8일
If you know where the missing element(s) belong(s), put NaN(s) there, which will give you a disjointed line:
Year = [2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010];
X = [1 2 1 4 5 6 7 2 3 5 6];
% this:
Y = [1 2 NaN 3 4 5 2 3 1 2 3];
% or this:
Y = [1 2 3 4 5 2 3 1 2 3];
Y = [Y([1 2]) NaN Y(3:end)];
plot(Year,[X;Y])
legend('X','Y')

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 2-D and 3-D Plots에 대해 자세히 알아보기

태그

Community Treasure Hunt

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

Start Hunting!

Translated by