plot
plot_mo(target_names, combinations, pareto, y_rf=None, pareto_front=False, y_best=None, y_add=None, y_add2=None, y_add_color='blue', y_add2_color='green', title='', y_orig=None, pareto_front_orig=False, pareto_label=False, y_rf_color='blue', y_best_color='red', x_axis_transformation='id', y_axis_transformation='id', y_best_label='Best', y_add_label='Add', y_add2_label='Add2', filename=None)
¶
Generates scatter plots for each combination of two targets from a multi-output prediction while highlighting Pareto optimal points.
Parameters:
Name | Type | Description | Default |
---|---|---|---|
y_rf |
ndarray
|
The predicted target values with shape (n_samples, n_targets). |
None
|
target_names |
list
|
A list of target names corresponding to the columns of y_rf. |
required |
combinations |
list
|
A list of tuples, where each tuple contains the indices of the target combinations to plot. |
required |
pareto |
str
|
Specifies whether to compute Pareto front based on ‘min’ or ‘max’ criterion. |
required |
pareto_front |
bool
|
If True, connect Pareto optimal points with a red line for y_rf. |
False
|
y_best |
ndarray
|
A NumPy array representing the best point to highlight in red. Defaults to None. |
None
|
y_add |
ndarray
|
A NumPy array representing the additional points to highlight in blue. Defaults to None. |
None
|
y_add2 |
ndarray
|
A NumPy array representing the additional points to highlight in green. Defaults to None. |
None
|
y_add_color |
str
|
The color of the additional points. Defaults to “blue”. |
'blue'
|
y_add2_color |
str
|
The color of the additional points. Defaults to “green”. |
'green'
|
y_best_label |
str
|
The label for the best point. Defaults to “Best”. |
'Best'
|
y_add_label |
str
|
The label for the additional points. Defaults to “Add”. |
'Add'
|
y_add2_label |
str
|
The label for the additional points. Defaults to “Add2”. |
'Add2'
|
title |
str
|
The title of the plot. Defaults to “” (empty string). |
''
|
y_orig |
ndarray
|
The original target values with shape (n_samples, n_targets). Defaults to None. |
None
|
pareto_front_orig |
bool
|
If True, connect Pareto optimal points with a light blue line for y_orig. Defaults to False. |
False
|
pareto_label |
bool
|
If True, label Pareto points with their index. Defaults to False. |
False
|
y_rf_color |
str
|
The color of the predicted points. Defaults to “blue”. |
'blue'
|
y_best_color |
str
|
The color of the best point. Defaults to “red”. |
'red'
|
x_axis_transformation |
str
|
Transformation for the x-axis. Options are “id” (linear), “log” (logarithmic), and “loglog” (log-log). Defaults to “id”. |
'id'
|
y_axis_transformation |
str
|
Transformation for the y-axis. Options are “id” (linear), “log” (logarithmic), and “loglog” (log-log). Defaults to “id”. |
'id'
|
filename |
str
|
If provided, saves the plot to the specified file. Supports “pdf” and “png” formats. Defaults to None. |
None
|
Returns:
Name | Type | Description |
---|---|---|
None |
None
|
Displays or saves the plot. |
Examples:
>>> from spotpython.mo.plot import plot_mo
>>> import numpy as np
>>> target_names = ["Target 1", "Target 2"]
>>> combinations = [(0, 1)]
>>> pareto = "min"
>>> y_rf = np.random.rand(100, 2)
>>> y_orig = np.random.rand(100, 2)
>>> plot_mo(target_names, combinations, pareto, y_rf=y_rf, y_orig=y_orig, filename="plot.png")
Source code in spotpython/mo/plot.py
7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 |
|