Skip to content

Commit 53444bc

Browse files
authored
Merge pull request #119 from dklein-pik/master
Update definition of modelstat 13
2 parents 78b8f4c + d37ed70 commit 53444bc

File tree

6 files changed

+17
-17
lines changed

6 files changed

+17
-17
lines changed

.buildlibrary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ValidationKey: '42381822'
1+
ValidationKey: '42463342'
22
AcceptedWarnings:
33
- 'Warning: package ''.*'' was built under R version'
44
- 'Warning: namespace ''.*'' is not available and has been replaced'

.github/workflows/check.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
- uses: r-lib/actions/setup-r-dependencies@v2
2424
with:
2525
extra-packages: |
26-
any::lucode2
27-
any::covr
28-
any::madrat
29-
any::magclass
30-
any::citation
31-
any::gms
32-
any::goxygen
33-
any::GDPuc
26+
lucode2
27+
covr
28+
madrat
29+
magclass
30+
citation
31+
gms
32+
goxygen
33+
GDPuc
3434
# piam packages also available on CRAN (madrat, magclass, citation,
3535
# gms, goxygen, GDPuc) will usually have an outdated binary version
3636
# available; by using extra-packages we get the newest version

CITATION.cff

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ cff-version: 1.2.0
22
message: If you use this software, please cite it using the metadata from this file.
33
type: software
44
title: 'modelstats: Run Analysis Tools'
5-
version: 0.21.21
6-
date-released: '2024-09-16'
5+
version: 0.21.22
6+
date-released: '2024-10-15'
77
abstract: A collection of tools to analyze model runs.
88
authors:
99
- family-names: Giannousakis

DESCRIPTION

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
Package: modelstats
22
Type: Package
33
Title: Run Analysis Tools
4-
Version: 0.21.21
5-
Date: 2024-09-16
4+
Version: 0.21.22
5+
Date: 2024-10-15
66
Authors@R: c(
77
person("Anastasis", "Giannousakis", email = "giannou@pik-potsdam.de", role = c("aut","cre")),
88
person("Oliver", "Richters", role = "aut")

R/getRunStatus.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ getRunStatus <- function(mydir = dir(), sort = "nf", user = NULL) {
105105
}
106106
}
107107
explain_modelstat <- c("1" = "Optimal", "2" = "Locally Optimal", "3" = "Unbounded", "4" = "Infeasible",
108-
"5" = "Locally Infes", "6" = "Intermed Infes", "7" = "Intermed Nonoptimal", "13" = "Error achieved")
108+
"5" = "Locally Infes", "6" = "Intermed Infes", "7" = "Intermed Nonoptimal", "13" = "Error No Solution")
109109
if (out[i, "modelstat"] %in% names(explain_modelstat)) {
110110
out[i, "modelstat"] <- paste0(out[i, "modelstat"], ": ", explain_modelstat[out[i, "modelstat"]])
111111
}

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Run Analysis Tools
22

3-
R package **modelstats**, version **0.21.21**
3+
R package **modelstats**, version **0.21.22**
44

55
[![CRAN status](https://www.r-pkg.org/badges/version/modelstats)](https://cran.r-project.org/package=modelstats) [![R build status](https://github.com/pik-piam/modelstats/workflows/check/badge.svg)](https://github.com/pik-piam/modelstats/actions) [![codecov](https://codecov.io/gh/pik-piam/modelstats/branch/master/graph/badge.svg)](https://app.codecov.io/gh/pik-piam/modelstats) [![r-universe](https://pik-piam.r-universe.dev/badges/modelstats)](https://pik-piam.r-universe.dev/builds)
66

@@ -47,7 +47,7 @@ In case of questions / problems please contact Anastasis Giannousakis <giannou@p
4747

4848
To cite package **modelstats** in publications use:
4949

50-
Giannousakis A, Richters O (2024). _modelstats: Run Analysis Tools_. R package version 0.21.21, <https://github.com/pik-piam/modelstats>.
50+
Giannousakis A, Richters O (2024). _modelstats: Run Analysis Tools_. R package version 0.21.22, <https://github.com/pik-piam/modelstats>.
5151

5252
A BibTeX entry for LaTeX users is
5353

@@ -56,7 +56,7 @@ A BibTeX entry for LaTeX users is
5656
title = {modelstats: Run Analysis Tools},
5757
author = {Anastasis Giannousakis and Oliver Richters},
5858
year = {2024},
59-
note = {R package version 0.21.21},
59+
note = {R package version 0.21.22},
6060
url = {https://github.com/pik-piam/modelstats},
6161
}
6262
```

0 commit comments

Comments
 (0)