Skip to content

Latest commit

 

History

History
117 lines (85 loc) · 4.09 KB

as_discrete.md

File metadata and controls

117 lines (85 loc) · 4.09 KB

Function asDiscrete()

The function asDiscrete() is used to annotate a numeric data series as categorical data with the possibility of its ordering for the purposes of given visualization.

Usage:

asDiscrete(variable, label=Null, orderBy=Null, order=Null)

where

  • variable (string) - the name of the data variable (which is mapped to the plot aesthetic);
  • label (string) - the name of the scale - it will be used as the axis label or as the legend title;
  • orderBy (string) - the name of the variable by which the ordering will be performed;
  • order (int) - the ordering direction - 1 for ascending direction and -1 for descending (default value).

To enable ordering mode, at least one ordering parameter (orderBy or order) should be specified. By the default, it will use descending direction and ordering by eigenvalues. You cannot specify different order settings for the same variable. However, if these settings don't contradict each other, they will be combined.

The orderBy is a numeric variable, which values are used for reordering. It's also possible to use statistical variables. The reordering uses the average value. The exception is plots with the stack position adjustment, where multiple bars occupying the same x position are stacked atop one another: in this case, the sum is calculated to get the order of the stack sizes.

Examples

p = letsPlot(mpg)
p + geomPoint { x='displ'; y='hwy'; color='cyl' }

Let's annotate the 'cyl' variable as discrete using the asDiscrete('cyl') function. As a result, the data is divided into groups, a discrete color scale is assigned instead of a continuous one:

p + geomPoint { x='displ'; y='hwy'; color=asDiscrete('cyl') }

Set the 'cyl' variable in ascending order of its values:

p + geomPoint { x='displ'; y='hwy'; color=asDiscrete('cyl', order=1) }

Boxplot example:

p + geomBoxplot { x='class'; y='hwy' }

Order x alphabetically

p + geomBoxplot { x=asDiscrete('class', order=1); y='hwy' }

Order x by another variable - in descending order of the median:

p + geomBoxplot { x=asDiscrete('class', orderBy='..middle..'); y='hwy' }

Add color associated with the same variable. The ordering is also applied to it, which will be visible in the legend:

p + geomBoxplot { x=asDiscrete('class', order=1); y='hwy'; color='class' }

Two different ordering settings are specified for the class variable. These settings don't contradict each other. This means that they will be combined, and the variable will be ordered in ascending order ymax:

p + geomBoxplot { x=asDiscrete('class', orderBy='..ymax..'); y='hwy'; color=asDiscrete('class', order=1) }

Example of ordering for two variables:

p + geomBar { x=asDiscrete('manufacturer', order=1), fill=asDiscrete('class', order=1 }

Reorder x by counts to get from highest on the left to lowest on the right:

p + geomBar { x=asDiscrete('manufacturer', orderBy='..count..'); fill=asDiscrete('class', order=1) }

Apply sampling to the plot after reordering:

p + geomBar(sampling=sampling_pick(4)) { x=asDiscrete('manufacturer', orderBy='..count..'); fill=asDiscrete('class', order=1) } 

Example Notebooks