2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

ThingSpeakの積み上げグラフ

Last updated at Posted at 2020-02-16

以前書いた気温のグラフがバグってたので直してみました。二値の積み上げグラフで、片方を白にして消して、高気最低最温の表示を行います。

以前作ったものは0度以下に対応していませんでした。

% Last week max and min temputure

readChannelID = ;
readAPIKey = "";

last = 7 * 4;

day = datetime('now') - last;
disp(day);

% startdaystr = "Sep 22, 2019 00:00:00";
% enddaystr = "Sep 23, 2019 00:00:00";

for c = 1:last
    
    startdaystr = datestr(day,'mmm dd, yyyy 00:00:00');
    enddaystr = datestr(day + 1,'mmm dd, yyyy 00:00:00');
    [a,b] = thingSpeakRead(readChannelID, 'ReadKey', readAPIKey, 'Fields',2,'DateRange', [datetime(startdaystr),datetime(enddaystr)]);

    a = filloutliers(a,'linear');
    [m, n] = max(a);
    [x, y] = min(a);

    t(c) = day;
    if x > 0
      vmax(c) = m - x
      vmin(c) = x
    elseif m > 0
      vmax(c) = m
      vmin(c) = x
    else
      vmax(c) = x - m
      vmin(c) = m
    end
    day = day + 1
end

C = vertcat(vmin, vmax);

H = bar(t, C, 'stacked');

ba = H(1);
bb = H(2);
disp(ba);

ba.FaceColor = 'flat';
bb.FaceColor = 'flat';

set(H(1),{'EdgeColor'},{[1 1 1]});
set(H(2),{'EdgeColor'},{[1 1 1]});
for c = 1:last
    if vmin(c) > 0 
      ba.CData(c,:) = [1 1 1];
      bb.CData(c,:) = [1 0 1];
    elseif vmax(c) < 0
      ba.CData(c,:) = [1 1 1];
      bb.CData(c,:) = [1 0 1];
    else
      ba.CData(c,:) = [1 0 1];
      bb.CData(c,:) = [1 0 1];
    end
end

スクリーンショット 2020-02-16 13.39.33.png

テストケース:最高気温10度最低気温2度

スクリーンショット 2020-02-16 13.35.22.png

テストケース:最高気温2度最低気温-10度

スクリーンショット 2020-02-16 13.34.28.png

テストケース:最高気温-2度最低気温-10度

スクリーンショット 2020-02-16 13.33.19.png

季節外れの雪が降った日のグラフがおかしくなっていました。

MATLAB_BUG.png

調べてみたところfilloutliers(a,'linear');がエラー値としてデータを省いたことが原因でした。季節外れの雪にMATLABも迷ってしまったようです。

スクリーンショット 2020-04-09 12.29.03.png

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?