Plotter.distrib_attributes2d
- Plotter.distrib_attributes2d(blocks: List[str] | None = None, attributes: List[str] | None = None, transformed: bool = False, downsamp: int = 2, output_name: str | None = None) Figure | None [source]
Plots the 2D joint distribution of all the selected attributes (= DataObject’s) in the given data blocks.
- Parameters:
blocks (List[str]) – List of names of the data blocks to be plotted. The blocks must be available in the dataset or in the datamodule. If None, the blocks are automatically selected based on the attributes.
attributes (List[str], optional, default=None) – List of attributes (= names of DataObject’s) to be plotted. If None, all attributes of the blocks are plotted. If the blocks argument is not None, the attributes need to be provided.
transformed (bool, optional, default=False) – If True, the data is plotted transformed, while False returns the plots it in its original domain
downsamp (int, optional, default=2) – Down-sampling factor for the data.
output_name (str, optional, default=None) – Name of the output file. If None, the name is automatically generated from the data block names.
- Returns:
Optional[
plotly.graph_objects.Figure
] – Plotly figure object, if self.output is None, otherwise None.