parallel_coordinate_plot
plot_parallel_coordinates
¶
Draw a parallel coordinate plot based on search results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search |
Union[Search, str]
|
The search results (in memory or path to disk file) to be visualized. |
required |
color_by |
Optional[str]
|
Which key to use for line coloring. |
None
|
title |
Optional[str]
|
The plot title to use. |
None
|
ignore_keys |
Union[None, str, Sequence[str]]
|
Which keys in the params/results should be ignored. |
None
|
Returns:
Type | Description |
---|---|
FigureFE
|
A plotly figure instance. |
Source code in fastestimator/fastestimator/search/visualize/parallel_coordinate_plot.py
visualize_parallel_coordinates
¶
Display or save a parallel coordinate plot based on search results.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
search |
Union[Search, str]
|
The search results (in memory or path to disk file) to be visualized. |
required |
color_by |
Optional[str]
|
Which key to use for line coloring. |
None
|
title |
Optional[str]
|
The plot title to use. |
None
|
ignore_keys |
Union[None, str, Sequence[str]]
|
Which keys in the params/results should be ignored. |
None
|
save_path |
Optional[str]
|
The path where the figure should be saved, or None to display the figure to the screen. |
None
|
verbose |
bool
|
Whether to print out the save location. |
True
|