Extract Min, Max and mean values for each month of each respective year. (Excel Data)
조회 수: 4 (최근 30일)
이전 댓글 표시
Using the daily temperature data I would like to be able to extract mean monthly temperature, extreme minimum monthly temperature (the coldest temperature of the month), and extreme maximum monthly temperature (the hottest temperature of the month).
For example, for the month of January, I would like to be able to values the min, max and mean for each year.
I would please like an example shown for january then I will proceed
댓글 수: 0
답변 (3개)
Walter Roberson
2019년 11월 22일
One of the easier ways is to readtable() and convert to timetable() object, and use retime()
댓글 수: 0
Erivelton Gualter
2019년 11월 22일
%% Initialize variables.
filename = 'temptable.csv';
delimiter = ',';
startRow = 3;
%% Format for each line of text:
formatSpec = '%f%f%f%f%C%f%s%f%C%[^\n\r]';
%% Open the text file.
fileID = fopen(filename,'r');
%% Read columns of data according to the format.
dataArray = textscan(fileID, formatSpec, 'Delimiter', delimiter, 'TextType', 'string', 'EmptyValue', NaN, 'HeaderLines' ,startRow-1, 'ReturnOnError', false, 'EndOfLine', '\r\n');
%% Close the text file.
fclose(fileID);
%% Create output variable
temptable = table(dataArray{1:end-1}, 'VariableNames', {'Year','Month','Day','MaxTempC','MaxTempFlag','MinTempC','MinTempFlag','MeanTempC','MeanTempFlag'});
%% Clear temporary variables
clearvars filename delimiter startRow formatSpec fileID dataArray ans;
%% HERE YOU CAN ADD A FOR LOOP AND GET THE INFO FOR OTHER MONTHS
i=1; % January
idx_months = find(temptable.Month == i);
meanmonthly = mean(temptable(idx_months,:).MeanTempC(~isnan(temptable(idx_months,:).MeanTempC)));
minmonthly = min(temptable(idx_months,:).MeanTempC(~isnan(temptable(idx_months,:).MeanTempC)));
maxmonthly = max(temptable(idx_months,:).MeanTempC(~isnan(temptable(idx_months,:).MeanTempC)));
댓글 수: 2
Erivelton Gualter
2019년 11월 22일
You are right. It was misshing the year.
Change the following line:
idx_months = find(temptable.Month == i & temptable.Year == 1977);
The results correspond to Janury 1997.
Andrei Bobrov
2019년 11월 22일
편집: Andrei Bobrov
2019년 11월 22일
Please run file MATLABAnswer.m
MATLABAnswer.m:
T = readtable('Path\to\your\file\temptable.csv','Delimiter',',',...
'HeaderLines',1);
T = fillmissing(T(:,[1:3,4:2:end-1]),'linear'); % for NaNs
Tout = rowfun(@funanswer,T,'InputVariables',4:6,'GroupingVariables',1:2,...
'OutputVariableNames',{'max_monthly','min_monthly','mean_monthly'});
function [a,b,c] = funanswer(x,y,z)
a = max(x);
b = min(y);
c = mean(z);
end
댓글 수: 0
참고 항목
카테고리
Help Center 및 File Exchange에서 Spreadsheets에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!