Smoothed daily count of each column by applying a moving average filter of length 7

1 回表示 (過去 30 日間)
SAS
SAS 2020 年 6 月 7 日
コメント済み: Image Analyst 2020 年 6 月 7 日
I have used readtable command to get data from an excel file. and smoothing data of one column. i.e 6th column. But it's giving an error. How can we apply Smoothed daily count of each column by applying a moving average filter of length 7?
clc
clear all
T = readtable('C:\Users\SAS\Downloads\ABC.xlsx', 'Range' , 'A1:AH154')
% Calculate daily counts
c=T(:,6)
yy=smooth(c)

回答 (1 件)

Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato 2020 年 6 月 7 日
If your table has numeric values, then:
c=T{:,6};
yy=smooth(c,7)
If your table has string values that should represent numeric ones:
yy=smooth( cell2mat( arrayfun(@(x)str2double(x),c,'uniformoutput',0) ),7)
  3 件のコメント
Thiago Henrique Gomes Lobato
Thiago Henrique Gomes Lobato 2020 年 6 月 7 日
Have you noticed the following notation
c=T{:,6};
instead of
c=T(:,6)
?
Image Analyst
Image Analyst 2020 年 6 月 7 日
Please attach 'C:\Users\SAS\Downloads\ABC.xlsx', if you need more help.

サインインしてコメントする。

カテゴリ

Help Center および File ExchangeTables についてさらに検索

タグ

Community Treasure Hunt

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

Start Hunting!

Translated by