interdim.vis
Functions
|
Create a scatter plot figure. |
Find and return a free port number. |
|
|
Create an interactive scatter plot using Dash. |
Classes
|
Special type indicating an unconstrained type. |
|
Input of callback: trigger an update when it is updated. |
|
A class for creating interactive plots based on data points. |
|
Output of a callback. |
|
Patch a callback output value |
|
Use the value of a State in a callback but don't trigger updates. |
- interdim.vis.create_scatter_plot(x, y, z, marker_kwargs, scatter_kwargs=None)[source]
Create a scatter plot figure.
- Parameters:
x (array-like) – x-coordinates of the points.
y (array-like, optional) – y-coordinates of the points.
z (array-like, optional) – z-coordinates of the points.
marker_kwargs (dict) – Keyword arguments for marker properties.
scatter_kwargs (dict, optional) – Additional keyword arguments for the scatter plot.
- Returns:
The created scatter plot figure.
- Return type:
plotly.graph_objs.Figure
- interdim.vis.interactive_scatterplot(x: ndarray, y: ndarray | None = None, z: ndarray | None = None, true_labels: ndarray | None = None, cluster_labels: ndarray | None = None, point_visualization: Callable | str | None = None, marker_kwargs: Dict | None = None, scatter_kwargs: Dict | None = None, interact_mode: Literal['hover', 'click'] = 'hover', port: int | None = None, verbose: bool = False) Dash [source]
Create an interactive scatter plot using Dash.
- Parameters:
x (np.ndarray) – x-coordinates of the points.
y (np.ndarray, optional) – y-coordinates of the points.
z (np.ndarray, optional) – z-coordinates of the points.
true_labels (np.ndarray, optional) – True labels for the points.
cluster_labels (np.ndarray, optional) – Cluster labels for the points.
point_visualization (Callable or str, optional) – Function or string specifying point visualization.
marker_kwargs (dict, optional) – Keyword arguments for marker properties.
scatter_kwargs (dict, optional) – Additional keyword arguments for the scatter plot.
interact_mode (str) – Interaction mode, either “hover” or “click”.
port (int, optional) – Port number for the Dash server.
verbose (bool, optional) – Whether to print the address at which the Dash server is running. Defaults to False.
- Returns:
A Dash application instance for the interactive plot.
- Return type:
dash.Dash
- class interdim.vis.InteractionPlot(data_source, plot_type='bar', trace_kwargs=None, layout_kwargs=None, format_data=True)[source]
A class for creating interactive plots based on data points.
- data_source
The source of data for plotting.
- plot_type
The type of plot to create.
- Type:
str
- trace_kwargs
Additional keyword arguments for the trace.
- Type:
dict
- layout_kwargs
Additional keyword arguments for the layout.
- Type:
dict
- format_data
Whether to format the data before plotting.
- Type:
bool
- __init__(data_source, plot_type='bar', trace_kwargs=None, layout_kwargs=None, format_data=True)[source]
Initialize the InteractionPlot object.
- Parameters:
data_source – The source of data for plotting.
plot_type (str, optional) – The type of plot to create. Defaults to “bar”.
trace_kwargs (dict, optional) – Additional keyword arguments for the trace.
layout_kwargs (dict, optional) – Additional keyword arguments for the layout.
format_data (bool, optional) – Whether to format the data before plotting. Defaults to True.