Skip to content

Commit 7bda4cd

Browse files
committed
Shiny app updated for van Hout (2021) RCW.
1 parent b0e70bd commit 7bda4cd

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

NEWS.Rmd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,12 @@ scores to be returned with more precision.
1616

1717
- van Hout (2021) reverse crosswalk method added to eq5drcw function. This is
1818
now the default and recommended option for mapping EQ-5D-3L to EQ-5D-5L. The
19-
previous EuroQol (2019) mappings can be accessed by specifying the
19+
previous EuroQol (2019) mappings can be accessed from within R by specifying the
2020
`method = "EQ"` argument.
2121

22+
- Shiny app updated to include van Hout (2021) reverse crosswalk value sets.
23+
EuroQol (2019) value sets now removed.
24+
2225
# eq5d 0.15.7 (2025-02-28)
2326

2427
- United Arab Emirates EQ-5D-5L value set added.

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@
1313
EQ-5D-5L. The previous EuroQol (2019) mappings can be accessed by
1414
specifying the `method = "EQ"` argument.
1515

16+
- Shiny app updated to include van Hout (2021) reverse crosswalk value
17+
sets. EuroQol (2019) value sets now removed.
18+
1619
# eq5d 0.15.7 (2025-02-28)
1720

1821
- United Arab Emirates EQ-5D-5L value set added.

inst/shiny/server.R

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ shinyServer(function(input, output, session) {
8787
if(input$country %in% colnames(VAS))
8888
type <-c(type, "VAS")
8989

90-
if(input$country %in% colnames(RCW))
90+
if(input$country %in% colnames(RCWVH))
9191
type <-c(type, "RCW")
9292

9393
if(input$country %in% colnames(DSU3L))
@@ -216,6 +216,10 @@ shinyServer(function(input, output, session) {
216216
print(paste(input$version, type=input$type, country=input$country))
217217
vs <- valuesets(version=input$version, type=input$type, country=input$country)
218218

219+
if("Notes" %in% colnames(vs)) {
220+
vs <- vs[which(vs$Notes != "EuroQol (2019)"),]
221+
}
222+
219223
if(nrow(vs) != 1)
220224
return()
221225

0 commit comments

Comments
 (0)