filter.names: Filter a subset from the names based on percentiles

Description Usage Arguments Examples

Description

This method filters a set of names from the complete set. The set is filtered based on predicates, which are evaluated in relation to the percentiles of the given variable (see examples). Multiple predicates are first all evaluated on the complete dataset and then combined (i.e. the percentiles are not re-evaluated in the filtered dataset).

Usage

1

Arguments

...

Predicates on the dataset using non-standard evaluation

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
# Retrieve all names without any further reduction
filter.names()

# Retrieve all names with Intelligence ratings above the median
filter.names(Intelligence >= 0.5)

# Retrieve all names, which are not too uncommon (Familiarity at least
# in the 20th percentile) and for which Intelligence is above the
# median
filter.names(Familiarity >= 0.2, Intelligence >= 0.5)

aggloeckner/GerNameR documentation built on May 20, 2019, 8:01 p.m.