eelbrain.plot.Scatter
- class eelbrain.plot.Scatter(y, x, color=None, size=None, sub=None, data=None, colors=None, vmin=None, vmax=None, markers=None, legend=None, labels=None, alpha=1.0, xlabel=True, ylabel=True, aspect='auto', **kwargs)
Scatter-plot
- Parameters
color (Union[Factor, Interaction, NestedEffect, str, Var]) – Plot the correlation separately for different categories.
data (Dataset) – If a Dataset is specified, all data-objects can be specified as names of Dataset variables
colors (Union[dict, str]) – If
color
is continuous, a colormap to assign color to values. Ifcolor
is discrete, a dictionary of colors for values incolor
.vmin (str) – Lower bound of the colormap.
vmax (str) – Upper bound of the colormap.
markers (str) – Marker shape (see
matplotlib.markers
).legend (Optional[Union[str, int, Tuple[float, float], bool]]) – Matplotlib figure legend location argument, or
'fig'
to plot the legend in a separate figure.labels (dict) – Alternative labels for legend as
{cell: label}
dictionary (preserves order).xlabel (Union[bool, str]) – Labels for x-axis; the default is determined from the data.
ylabel (Union[bool, str]) – Labels for y-axis; the default is determined from the data.
aspect (Union[float, Literal['auto', 'equal']]) – Matplotlib parameter (see
set_aspect()
).... – Also accepts General layout parameters.
alpha (float) –
Methods
|
Add a diagonal to the plot. |
|
Draw a horizontal line on one or more axes |
|
Draw a horizontal bar on one or more axes |
|
Draw a vertical line on one or more axes |
|
Draw a vertical bar on one or more axes |
|
Close the figure. |
|
(Re-)draw the figure (after making manual changes). |
|
Draw crosshairs under the cursor |
|
Draw the outline of the figure |
|
Create FMTXT Image from the figure |
|
Plot a colorbar corresponding to the displayed data |
|
Plot the legend (or remove it from the figure). |
|
Short-cut for Matplotlib's |
|
Save the legend as image file |
|
Set the figure window title |
|
Set the label for the x-axis |
|
Rotate every x-axis tick-label by an angle (counterclockwise, in degrees) |
|
Set the label for the y-axis |