Gets the entry which has the highest frequency among the 'columnName' column in 'src' dataframe.
Gets the entry which has the highest frequency among the 'columnName' column in 'src' dataframe.
Dataframe
Column to be investigated
Any the column entry with highest frequency
Same as makeBoxplotOutlierBasedFrequency(src, columnName), but the columns to be investigated are given by array of columns [less frequent 'array of element', the number of occurrences].
Same as makeBoxplotOutlierBasedFrequency(src, columnName), but the columns to be investigated are given by array of columns [less frequent 'array of element', the number of occurrences].
Dataframe
Map[List[Any], Long]
Same as makeZscoreOutlierBasedFrequency(src, columnName), but the method to discriminate outliers is boxplot.
Same as makeZscoreOutlierBasedFrequency(src, columnName), but the method to discriminate outliers is boxplot. [less frequent element, the number of occurrences].
Dataframe
Column to be investigated
Map[Any, Long]
Makes the frequency table which describes the frequencies of all elements of the 'columnname' column in src dataframe as a form of map [element, the number of occurrences].
Makes the frequency table which describes the frequencies of all elements of the 'columnname' column in src dataframe as a form of map [element, the number of occurrences].
Dataframe
Column to be investigated
Map[Any, Long]
Same as makeZscoreOutlierBasedFrequency(src, columnName), but the columns to be investigated are given by array of columns [less frequent 'array of element', the number of occurrences].
Same as makeZscoreOutlierBasedFrequency(src, columnName), but the columns to be investigated are given by array of columns [less frequent 'array of element', the number of occurrences].
Dataframe
Map[List[Any], Long]
Firstly, get the frequency info about the 'columnName' column in 'src' dataframe.
Firstly, get the frequency info about the 'columnName' column in 'src' dataframe. Based on the frequency, the less frequent tuples are described by z-score outlier method, and then return them. [less frequent element, the number of occurrences].
Dataframe
Column to be investigated
Map[Any, Long]
This object manages the frequency of values in the specified column.