The hardware and bandwidth for this mirror is donated by dogado GmbH, the Webhosting and Full Service-Cloud Provider. Check out our Wordpress Tutorial.
If you wish to report a bug, or if you are interested in having us mirror your free-software or open-source project, please feel free to contact us at mirror[@]dogado.de.
New EQ-5D value sets are published regularly. Rather than waiting for
a package update, eq5dsuite allows you to add your own
value sets using eqvs_add(). Custom value sets work with
all scoring and analysis functions in the package.
A custom value set must be a data frame with two columns:
state — the EQ-5D health state code (integer)# Generate all valid 3L health state codes
states <- make_all_EQ_indexes(version = "3L")
# Create a custom value set (random values for illustration)
set.seed(42)
custom_vs <- data.frame(
state = states,
MY_VS = runif(243, min = -0.5, max = 1.0)
)
head(custom_vs)
#> state MY_VS
#> 1 11111 0.8722091
#> 2 11112 0.9056131
#> 3 11113 -0.0707907
#> 4 11121 0.7456714
#> 5 11122 0.4626183
#> 6 11123 0.2786439# Register for current session only (saveOption = 1)
eqvs_add(
custom_vs,
version = "3L",
country = "My Country",
countryCode = "MC",
VSCode = "MY_VS",
description = "Custom value set — demonstration",
saveOption = 1
)
# Verify it appears in the list
eqvs_display(version = "3L")
# Use it for value calculation
eq5d3l(c(11111, 12321), country = "MY_VS")To persist a custom value set across R sessions, use
saveOption = 2:
eqvs_add(
custom_vs,
version = "3L",
country = "My Country",
countryCode = "MC",
VSCode = "MY_VS",
description = "Custom value set — permanent",
saveOption = 2 # saves to user cache
)Load it in a new session with:
eqvs_add() validates the value set before
registration:
Custom value sets are fully compatible with all crosswalk functions:
Use update_value_sets() to automatically check for and
install newly published value sets from the eq5dsuite online
repository:
See vignette("update-value-sets") for full details.
These binaries (installable software) and packages are in development.
They may not be fully stable and should be used with caution. We make no claims about them.
Health stats visible at Monitor.