필터 지우기
필터 지우기

Percent increase in mortality for 1oC increase in temperature

조회 수: 1 (최근 30일)
Daphne PARLIARI
Daphne PARLIARI 2020년 12월 29일
편집: Daphne PARLIARI 2020년 12월 29일
Hello everyone.
I have a timeseries of daily values of temperature and number of deaths (see attached Daily_Data_MoT.xlsx). I am trying to find a way to calculate percent increase in mortality per 1oC increase above a certain heat threshold. Eg. if the threshold is 30oC, there is a 2.1% increase in mortality per 1oC increase in temperature (31oC, 32oC, ...).
Eventually (hopefuly) I will be able to produce a table like this:
For the time being I am doing
data = readtable('C:\PhD\ELSTAT\Data\Daily_Data_MoT.xlsx');
%% Calculate the first derivative
data = sortrows(data, 8);
percent_change = diff(data.Daily_Deaths) ./ data.Daily_Deaths(1:end-1) * 100;
data(1,:) = [];
idx = data.Daily_T > 28;
plot(data.Daily_T(idx), percent_change(idx))
Nevertheless I am not sure it works... I would appreciate any help!!
PS. I am on R2019a

답변 (0개)

카테고리

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

Community Treasure Hunt

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

Start Hunting!

Translated by