Learn R Programming

IPDFileCheck (version 0.8.1)

return_subgroup_withNA: Function to return a subgroup when certain variable equals the given value while omitting those with NA

Description

Function to return a subgroup when certain variable equals the given value while omitting those with NA

Usage

return_subgroup_withNA(data, variable, value)

Value

subgroup a data frame if success error if failure

Arguments

data

data frame

variable

that corresponds to a column

value

a value that can be taken by the variable

Examples

Run this code
return_subgroup_withNA(data.frame(
  "age" = c(21, 15),
  "Name" = c("John", "Dora")
), "age", 10)

Run the code above in your browser using DataLab