Example.Basic.BoxPlot

This task type is an example for how Python libraries like pandas, matplotlib and seaborn can be used to generate box plots in XamFlow.

Default Mode

  • Leave x_column_name=none, y_column_name=none, and group_column_name=none unspecified.

  • Each numeric column in the table is presented in a (vertical) box-and-whiskers.

Single Column Mode

  • Specify only x_column_name to show one horizontal box-and-whiskers.

  • Specify only y_column_name to show one vertical box-and-whiskers.

X Categories Mode

  • Specify both x_column_name and y_column_name.

  • The categorical X column is used to categorize the numeric Y column.

  • The X column values are indicated on the X axis.

  • Each category value is presented in a (vertical) box-and-whiskers.

X Categories and Grouping Mode

  • Specify all x_column_name, y_column_name and group_column_name.

  • The categorical X and Group columns are used to categorize / group the numeric Y column.

  • Each value combination is presented in a (vertical) box-and-whiskers.

  • The X column values are indicated on the X axis.

  • The Group column values correspond to a color as indicated in a legend.

(If group_column_name is specified, both x_column_name and y_column_name should always be specified.)