ICD_group_GLOBOCAN: ICD10 group example

Description Usage Format Details See Also Examples

Description

ICD10 group example for the function csu_group_cases based on GLOBOCAN

Usage

1
data("ICD_group_GLOBOCAN")

Format

A data frame with 97 observations on the following 2 variables.

ICD

ICD10 code

LABEL

label for cancer group

Details

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

See Also

csu_group_cases ICD_group_CI5

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
data(ICD_group_GLOBOCAN)
data(data_individual_file)

#group individual data by 
#	5 year age group 
#	ICd grouping from dataframe ICD_group_GLOBOCAN

df_data_icd <- csu_group_cases(data_individual_file,
	var_age="age",
	group_by=c("sex", "regcode", "reglabel"),
	df_ICD = ICD_group_GLOBOCAN,
	var_ICD  ="site") 

Rcan documentation built on July 1, 2020, 10:20 p.m.