aggR_possible: aggR_possible

Description Usage Arguments Value Examples

View source: R/aggR_possible.R

Description

Checks through a dataframe and a vector of features that can be deleted OR KEPT!!!!! outputs a list of list each sublist contains a set of features that can be filtered out. To filter by keeping, set keep = TRUE (default) To filter by columns to filter out, set keep = FALSE if you want to ignore certain columns, use the features setting. If you do, the function will ONLY consider these columns, ignoring the others. If you only want to look at combinations of a certain length, use number. Otherwise, leave it as null

Usage

1
2
aggR_possible(data, number = NULL, features = names(data), keep = TRUE,
  all_symbol = "")

Arguments

data

data.frame

number

integer

features

vector

keep

logical

all_symbol

character

Value

filter_list list

Examples

1
2
3
4
5
load("../example_data/yummy.Rda")
dat_2

aggR_possible(dat_2, features =c("Colour", "Sweet_or_Salty", "Fruit"), keep = TRUE)
aggR_possible(dat_2, features =c("Colour", "Sweet_or_Salty", "Fruit"), number = 2, keep = TRUE)

amygoldlist/aggRviz documentation built on May 16, 2019, 11:10 p.m.