plot_3d#
- ReportPlotter.plot_3d(trace=0, snapshot_path=None, show=True, color_map_limits=[0, 1], is_polar=True)#
Create a Matplotlib 3D plot based on a list of data.
- Parameters:
- trace
int
,str
optional
Trace index or name on which create the 3D Plot.
- snapshot_path
str
,optional
Full path to image file if a snapshot is needed.
- showbool,
optional
Whether to show the plot or return the matplotlib object. Default is True.
- color_map_limits
list
,optional
Color map minimum and maximum values.
- is_polarbool,
optional
Whether if the plot will be polar or not. Polar plot will hide axes and grids. Default is
True
.
- trace
- Returns:
matplotlib.pyplot.Figure
Matplotlib figure object.