represent_numerical_data_forsubgroups: Function to find the number and percentages of categories

Description Usage Arguments Value Examples

View source: R/IPDFileCheck.R

Description

Function to find the number and percentages of categories

Usage

1
represent_numerical_data_forsubgroups(data, variable1, variable2, nrcode = NA)

Arguments

data,

a data frame

variable1

the column name of the variable to be grouped based on (categorical column)

variable2

the column name of the variable to represented (numerical data)

nrcode

non response code for the variable2

Value

the subgroup

Examples

1
2
3
4
this.df <- data.frame(c(11, 78,22), c("m", "f", "f"), c(1,2,2),
stringsAsFactors = FALSE)
colnames(this.df) <- c("mark", "gender", "group")
represent_numerical_data_forsubgroups(this.df, "group", "mark", NA)

IPDFileCheck documentation built on Feb. 1, 2022, 9:07 a.m.