Description Usage Arguments Details Value See Also Examples
Function used to convert the scores of the five dimensions of the KHQ5D to a single utility index using country specific value set.
1 2 3 4 5 6 7 8 9 10 11 12 13 |
scores |
data.frame with colnames RL, PL, SL, E, and S representing Role limitation, Physical limitation, Social Limitation, Emotions and Sleep. Alternatively a data.frame with the KHQ5D health profiles can be provided in a five digit format e.g., data.frame(state = c(11111, 22432, 34241, 43332)) or only the five digit e.g., 11111, c(11111), c(11111, 22432, 34241). |
country |
string specifying the country in which the value set scores were calculated. |
type |
string specifying method type used in deriving value set scores. |
author |
string specifying the author of the article containing the value set scores. |
year |
string specifying the year the article containing the value set scores was published. |
source |
string specifying the version of the King's Health Questionnaire used. |
ignore.invalid |
logical to indicate whether to ignore items data with invalid, incomplete or missing data; Default: FALSE. |
weights |
logical to indicate whether or not save the weights of each score of the KHQ5D. If weights = TRUE the weights will be generated and if weights and save.xlsx = TRUE an Excel file will be saved with the weights of each score plus the utility index under filename = "Res_KHQ5D_weig_uti_ind.xlsx" and sheetName = "Weights_Utility_Index". It is also possible to indicate another name, both for the file and for the sheet; Default: NULL. |
save.xlsx |
logical to indicate whether or not save the results; Default: FALSE. |
filename |
string specifying the file name if save.xlsx = TRUE; Default: "Res_KHQ5D_uti_ind.xlsx". If weights = true, default: "Res_KHQ5D_weig_uti_ind.xlsx". |
sheetName |
string specifying the sheet name if save.xlsx = TRUE; Default: "Utility_Index". If weights = true, default: "Weights_Utility_Index". |
Named vector RL, PL, SL, E and S represent Role limitation, Physical limitation, Social Limitation, Emotions and Sleep, respectfully.
A data frame with utility index scores of the KHQ5D.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 | KHQ5D(scores = c(RL=1,PL=1,SL=1,E=1,S=1), country = "UK",
type = "SG", author = "Brazier", year = 2008,
source = "KHQ", ignore.invalid = TRUE, weights = NULL)
KHQ5D(scores = c(RL=1,PL=1,SL=1,E=1,S=1), country = "UK",
type = "SG", author = "Brazier", year = 2008,
source = "KHQ", ignore.invalid = TRUE,
weights = NULL, save.xlsx = FALSE,
filename = "Res_KHQ5D_uti_ind.xlsx",
sheetName = "Utility_Index")
KHQ5D(scores = 11111, country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE)
KHQ5D(scores = c(11111), country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE)
KHQ5D(scores = c(11111, 22432, 34241, 43332, 22141),
country = "UK", type = "SG", author = "Brazier",
year = 2008, source = "KHQ", ignore.invalid = TRUE)
scores.df <- data.frame(
RL = c(1,2,3,4,2),
PL = c(4,3,4,3,2),
SL = c(1,2,2,4,1),
E = c(1,3,4,3,4),
S = c(1,2,1,2,1))
KHQ5D(scores = scores.df, country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE)
scores.df2 <- data.frame(state = c(11111, 22432, 34241, 43332, 22141))
KHQ5D(scores = scores.df2, country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE)
KHQ5D(scores = scores.df2$state, country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE)
KHQ5D(scores = KHQ5D_data, country = "UK", type = "SG",
author = "Brazier", year = 2008, source = "KHQ",
ignore.invalid = TRUE, weights = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.