Analyzing Rainfall data and sorting the data appropriately
9 ビュー (過去 30 日間)
古いコメントを表示
Hello,
I need to know how do I sort the rainfall data attached into monthly data and find out the dry days, maximum rainfall, all event sizes where rainfall is greater than 1mm and 10,50,90 percentile data. The rainfall data has a 6 min time step. Thanks
0 件のコメント
採用された回答
Cris LaPierre
2021 年 10 月 20 日
4 件のコメント
Cris LaPierre
2021 年 10 月 25 日
It just gets a little more complicated to read in because the date and number are in double quotes, so they are getting treated as a string, and read in as a single column.
Here's what I had to do in R2021b to get it into MATLAB
data = readtable('Rainfall 1994.xlsx','Range','A:A')
DR = split(data{:,1},',');
Date = datetime(DR(:,1),'InputFormat','M/dd/yyyy HH:mm');
Rainfall = str2double(DR(:,2));
RF = timetable(Date,Rainfall)
I also turned the data back into the original csv by removing the equation and the double quotes. It's a much simpler import process.
rf = readtimetable('Rainfall 1994.csv')
Once the data is imported, process the data however you like. MATLAB has some useful functions you may consider looking into, like retime, quantile, and groupsummary. For example, to turn your 6 minute data set into a daily data set, I might do the following
dailyRF = retime(rf,"daily","sum")
その他の回答 (1 件)
Priya Joshi
2021 年 10 月 25 日
4 件のコメント
Cris LaPierre
2021 年 11 月 18 日
編集済み: Cris LaPierre
2021 年 11 月 18 日
Perhaps provide a simple example? It is not exactly clear to me what it is you want to do.
How did you create the graph?
参考
カテゴリ
Help Center および File Exchange で Tables についてさらに検索
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!