Learn R Programming

eq5dsuite (version 1.0.1)

table_3_3: Table 3.3 EQ-5D values: by age and groupvar

Description

Table 3.3 EQ-5D values: by age and groupvar

Usage

table_3_3(
  df,
  names_eq5d = NULL,
  name_fu = NULL,
  levels_fu = NULL,
  name_groupvar,
  name_age,
  eq5d_version = NULL,
  country
)

Value

Summary data frame

Arguments

df

Data frame with the EQ-5D, age, follow-up and grouping columns

names_eq5d

Character vector of column names for the EQ-5D dimensions

name_fu

Character string for the follow-up column

levels_fu

Character vector containing the order of the values in the follow-up column. If NULL (default value), the levels will be ordered in the order of appearance in df.

name_groupvar

Character string for the grouping column

name_age

Character string for the age column

eq5d_version

Version of the EQ-5D instrument

country

A character string representing the name of the country. This could be in a 2-letter format, full name or short name, as specified in the country_codes datasets.

Examples

Run this code
example_data$ageband <- factor(
  example_data$ageband,
  levels = c("20 to 29", "30 to 39", "40 to 49", "50 to 59", "60 to 69", "70 to 79", "80 to 89")
)
example_data <- example_data[example_data$gender %in% c("Male", "Female"),]
table_3_3(
  example_data,
  names_eq5d = c("mo", "sc", "ua", "pd", "ad"),
  name_fu = "time",
  levels_fu = c('Pre-op', 'Post-op'),
  name_groupvar = "gender",
  name_age = "ageband",
  eq5d_version = "3L",
  country = "UK"
)

Run the code above in your browser using DataLab