Scatter with Effect

This is a variant of the Scatterchart that adds an effect to specified points to highlight them.

The Method To Use

The method is s.plt.scatter_with_effect().

It must contain the following input variables:

order: int
x: str
y: str
data: Optional[Union[List[str], DataFrame, List[Dict]]]

Accepts the following input variables as optional:

x_axis_name: Optional[str] = None 
y_axis_name: Optional[str] = None
title: Optional[str] = None
rows_size: Optional[int] = None
cols_size: Optional[int] = None
padding: Optional[List[int]] = None 
effect_points: Optional[List] = None
option_modifications: Optional[Dict] = None
variant: Optional[str] = None

Examples

The execution of the following code:

Last updated

Was this helpful?