Description Usage Arguments Value Examples
quantilePlot is used to vizualize numeric columns from table data in form of heatmap. It is also possible to exclude outliers by specifying quantiles For example, if q1 = 0.2 and q2 = 0.8, it means that heatmap would show values between q1 and q2
1 | quantilePlot(data, q1, q2)
|
data |
data table to be plotted |
q1 |
quantile below which values are not plotted |
q2 |
quantile above which values are not plotted |
returns plot with selected values
1 2 | data <- data.frame(iris)
quantilePlot(data, 0.3, 0.95)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.