Skip to content

Commit ff466b2

Browse files
committed
docs: add roadmap
1 parent c62045a commit ff466b2

3 files changed

Lines changed: 20 additions & 5 deletions

File tree

.github/CONTRIBUTING.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,20 @@ The package uses a lot of C++ code via the Rcpp package. Therefore, it is expect
4545
## Code of Conduct
4646

4747
Please note that the tidyhydro project is released with a [Contributor Code of Conduct](CODE_OF_CONDUCT.md). By contributing to this project you agree to abide by its terms.
48+
49+
## Roadmap
50+
### GOF
51+
-[ ] KGE''
52+
53+
-[ ] KGE Score
54+
55+
### Regression
56+
-[ ] PPCC - maximizes the probability plot correlation coefficient [@helselStatisticalMethodsWater2002, p.253]
57+
58+
-[ ] SSE - minimize sum of square errors [@helselStatisticalMethodsWater2002, p.253]
59+
60+
-[ ] BCF - Duan's bias correction factor for log, log10 and log2 [@rasmussenGuidelinesProceduresComputing2009, p. 17]
61+
62+
-[ ] MSPE - model standard percentage error log and nonlog [@rasmussenGuidelinesProceduresComputing2009, p. 13]
63+
64+
-[ ] RMSE

README.Rmd

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ The `tidyhydro` package follows the philosophy of [`yardstick`](https://github.c
4242

4343
```{r example}
4444
library(tidyhydro)
45-
data(avacha)
4645
str(avacha)
4746
4847
kge(avacha, obs, sim)

README.md

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,6 @@ can estimate `KGE`, `NSE` or `pBIAS` for a data frame like this:
4545

4646
``` r
4747
library(tidyhydro)
48-
data(avacha)
4948
str(avacha)
5049
#> Classes 'tbl_df', 'tbl' and 'data.frame': 365 obs. of 3 variables:
5150
#> $ date: Date, format: "2022-01-01" "2022-01-02" ...
@@ -129,9 +128,9 @@ bench::mark(
129128
#> # A tibble: 3 × 6
130129
#> expression min median `itr/sec` mem_alloc `gc/sec`
131130
#> <bch:expr> <dbl> <dbl> <dbl> <dbl> <dbl>
132-
#> 1 tidyhydro 1 1 29.2 NaN NaN
133-
#> 2 hydroGOF 15.1 19.1 1 Inf Inf
134-
#> 3 baseR 8.47 10.4 2.42 Inf Inf
131+
#> 1 tidyhydro 1 1 22.7 NaN NaN
132+
#> 2 hydroGOF 15.2 19.1 1 Inf Inf
133+
#> 3 baseR 8.66 10.6 2.44 Inf Inf
135134
```
136135

137136
## Code of Conduct

0 commit comments

Comments
 (0)