| ICD_group_CI5 | R Documentation | 
ICD10 group example for the function csu_group_cases based on CI5XII ICD grouping
data("ICD_group_CI5")A data frame with 97 observations on the following 2 variables.
ICDICD10 code
LABELlabel for cancer group
This dataset provide an example how to regroup ICD code using the function csu_group_cases
For instance this group
| ICD | LABEL | 
| C18 | COLORECTUM | 
| C19 | COLORECTUM | 
| C20 | COLORECTUM | 
| C21 | COLORECTUM | 
Will become:
| ICD_group | LABEL | 
| C18-C21 | COLORECTUM | 
See: csu_group_cases
csu_group_cases
ICD_group_GLOBOCAN
data(ICD_group_CI5)
data(data_individual_file)
#group individual data by 
#	5 year age group 
#	ICd grouping from dataframe ICD_group_CI5
df_data_icd <- csu_group_cases(data_individual_file,
	var_age="age",
	group_by=c("sex", "regcode", "reglabel"),
	df_ICD = ICD_group_CI5,
	var_ICD  ="site") 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.