eelbrain.report.scatter_table

eelbrain.report.scatter_table(xs, color=None, sub=None, data=None, diagonal=None, rasterize=None, markers='.', alpha=0.5, **kwargs)

Table with pairwise scatter-plots (see plot.Scatter)

Parameters
  • xs (Sequence[Union[Var, str]]) – List of variables for pairwise comparisons.

  • color (Union[Var, str]) – Plot the correlation separately for different categories.

  • sub (Union[Var, ndarray, str]) – Plot a subset of cases.

  • data (Dataset) – If a Dataset is specified, all data-objects can be specified as names of Dataset variables

  • diagonal (Tuple[float, float]) – Lower and upper value for plotting a diagonal (e.g. (0, 10) to plot diagonal from (0, 0) to (10, 10)).

  • rasterize (bool) – Rasterize images (improves display performance for plots with many points; default: rasterize for datasets with > 500 cases).

  • ** – Other plot.Scatter arguments.

  • markers (str) –

  • alpha (float) –

Return type

Table