Learn R Programming

IPDFileCheck (version 0.8.1)

represent_numerical_data_forsubgroups: Function to find the number and percentages of categories

Description

Function to find the number and percentages of categories

Usage

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

Value

the subgroup

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

Examples

Run this code
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)

Run the code above in your browser using DataLab