Description Usage Arguments Details Value See Also Examples
View source: R/analysis_dotplot_outlier.R
This function generates an outlier point plot (for a description see
slide 117 of the DA1 lecture of WT 2015/16) showing the value distribution
of data df, alllowing to identify potential outliers.
1 | analysis.dotplot(df, plot.title = "Outlier")
|
df |
|
plot.title |
Title for the |
The method generates a dotplot as an univariate outlier detector for a given
set of data df (must not be a data.frame or matrix.
So via the function analysis.dotplot it computes the
distribution of values in each given column via table.
Based on the distribution the method
cpp_valueOccurrencesToPoints will generate visualizable points
representing each occurence in the form (x[i], y[i,j]).
ggplot point plot.
1 2 3 4 | KaggleHouse:::analysis.dotplot(
iris$Sepal.Length,
plot.title = 'Outlier Plot for the Sepal Length of the Iris Dataset'
)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.