問題タブ [hydrotsm]

For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.

0 投票する
1 に答える
48 参照

r - 年次時系列データのプロット

次の時系列形式の約 60 のフロー ゲージング ステーションがあります。

データセット全体は、次のリンクから入手できます

https://drive.google.com/file/d/1PsU5ZaOcyWMxzl7NVdeMPbP2UxLBO2Bn/view?usp=sharing

水年は 10 月の終わりから 9 月に始まります (たとえば、1939 年 10 月 1 日から 1940 年 9 月 30 日まで、これは 1940 年と定義されます)。

次の情報をプロットしたい

1: -平均年間流量 3 ここに画像の説明を入力 :-ランク付けされた平均年間流量 ここに画像の説明を入力 3:-流量パターン ここに画像の説明を入力

ありがとう

0 投票する
0 に答える
61 参照

r - How can I calculate annual average temperature from a daily timeseries datasets of multiple stations for different hydrological year separately in R?

I have a daily time series data sets in the following format:

Date MeanTempStn1 MeanTempStn2 MeanTempStn3
01/01/1950 13.0 9.5 10.8
01/02/1950 4.6 3.8 6.7
....
12/31/1975 9.8 8.2 5.5

I know how to get the Annual Mean for each station separately using hydroSTM with one code. But I need to calculate the Annual Average Temperature for each station separately for each hydrological year which starts on 01 September of each year and ends on 31 August next year. For example, the hydrological year 1976 starts 01 September 1975 and ends on 31 August 1976. How can I do it in R?

Any help would be deeply appreciated.

Thank you.

Best regards, Mohammad Hasan