You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
**EXstat** is a R package which provide an efficient and simple solution to aggregate and analyze the stationarity of time series.
11
11
12
-
EXstat is highly customizable, but the **EXstat.CARD** extension provides a simpler solution for performing common hydroclimatic aggregations. See the [EXstat.CARD documentation](#extraction-process-with-card) or the [EXstat.CARD package](https://github.com/louis-heraut/EXstat.CARD) for advance understanding.
12
+
EXstat is highly customizable, but the **CARD** extension provides a simpler solution for performing common hydroclimatic aggregations. See the [CARD documentation]() of the [CARD package](https://github.com/louis-heraut/CARD) for advance understanding.
13
13
14
14
This project was carried out for National Research Institute for Agriculture, Food and the Environment (Institut National de Recherche pour l’Agriculture, l’Alimentation et l’Environnement, [INRAE](https://agriculture.gouv.fr/inrae-linstitut-national-de-recherche-pour-lagriculture-lalimentation-et-lenvironnement) in french) and is at the core of [MAKAHO](https://github.com/louis-heraut/MAKAHO) which won the [2024 Open Science Research Data Award](https://www.enseignementsup-recherche.gouv.fr/fr/remise-des-prix-science-ouverte-des-donnees-de-la-recherche-2024-98045) in the “Creating the Conditions for Reuse” category.
15
15
@@ -20,12 +20,6 @@ For latest development version
20
20
remotes::install_github("louis-heraut/EXstat")
21
21
```
22
22
23
-
And for [EXstat.CARD](https://github.com/louis-heraut/EXstat.CARD) extension latest development version
(which will take care of EXstat installation also)
28
-
29
23
30
24
## Documentation
31
25
### Extraction process
@@ -134,215 +128,6 @@ library(EXstat)
134
128
```
135
129
136
130
137
-
### Extraction process with [CARD](https://github.com/louis-heraut/EXstat.CARD/)
138
-
For a more user-friendly interaction, this package has been developed in symbiosis with predefined parameterisation files called CARD.
139
-
140
-
So you don't have to define complex parameters yourself to extract hydroclimatological variables. What's more, if the CARD you want doesn't exist, it's easy to create one based on the others.
141
-
142
-
To use CARD extraction with EXstat you need to install the [EXstat.CARD extension](https://github.com/louis-heraut/EXstat.CARD) as follows :
Maybeyoucan't find the CARD that you want so you want to try to customize one or even create a new one based on another example. To do so, get the example CARD you want in a local directory by running
This will create the `VCN10-5.R` CARD in the `"CARD-WIP"` directory of your working directory.
331
-
332
-
From there, you can open this R file and, for example, change the metadata and the return period parameter from `5` to `10` to get the `VCN10-10` CARD, which represents the annual minimum of 10-day mean daily discharge with a return period of 10 years instead of 5.
333
-
334
-
For the extraction, simply run
335
-
```R
336
-
res = CARD_extraction(data, CARD_name = NULL,
337
-
CARD_path = "CARD-WIP")
338
-
```
339
-
This will perform the extraction of all the CARDs in the `CARD_path` directory.
340
-
341
-
If you want to select specific variables to extract from your custom CARD directory, just use the `CARD_name` variable as seen in the [basic workflow](#basic-workflow) section.
342
-
343
-
For a deeper understanding of the CARD formatting, refer to the [EXstat.CARD documentation](https://github.com/louis-heraut/EXstat.CARD?tab=readme-ov-file#exstatcard-).
344
-
345
-
346
131
### Trend analyse
347
132
The stationarity analyse is computed with the `process_trend()` function on the extracted data `dataEX`. The **statistical test** used here is the **Mann-Kendall test**[^mann][^kendall].
0 commit comments