Scatter Plots¶
Scatter plot with regression line supporting lazy evaluation.
ScatterPlot
¶
Bases: BasePlot
Create a scatter plot with a regression line.
This plot shows the relationship between two variables and includes a linear regression model fit. It supports lazy evaluation for large Xarray/Dask datasets by delaying computation until the plot call.
Attributes¶
data : Union[xr.Dataset, xr.DataArray, pd.DataFrame] The input data for the plot. x : str The name of the variable for the x-axis. y : List[str] The names of the variables for the y-axis. c : Optional[str] The name of the variable used for colorizing points. colorbar : bool Whether to add a colorbar to the plot. title : Optional[str] The title for the plot.
Source code in src/monet_plots/plots/scatter.py
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 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | |
__init__(data=None, x=None, y=None, c=None, colorbar=False, title=None, fig=None, ax=None, df=None, **kwargs)
¶
Initialize the scatter plot.
Parameters¶
data : Any, optional
Input data. Can be a pandas DataFrame, xarray DataArray,
xarray Dataset, or numpy ndarray, by default None.
x : str, optional
Variable name for the x-axis, by default None.
y : Union[str, List[str]], optional
Variable name(s) for the y-axis, by default None.
c : str, optional
Variable name for colorizing the points, by default None.
colorbar : bool, optional
Whether to add a colorbar, by default False.
title : str, optional
Title for the plot, by default None.
fig : matplotlib.figure.Figure, optional
An existing Figure object, by default None.
ax : matplotlib.axes.Axes, optional
An existing Axes object, by default None.
df : Any, optional
Alias for data for backward compatibility, by default None.
**kwargs : Any
Additional keyword arguments passed to BasePlot.
Source code in src/monet_plots/plots/scatter.py
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 | |
hvplot(**kwargs)
¶
Generate an interactive scatter plot using hvPlot (Track B).
Parameters¶
**kwargs : Any
Keyword arguments passed to hvplot.scatter.
Common options include cmap, title, and alpha.
rasterize=True is used by default for high performance.
Returns¶
holoviews.core.layout.Layout The interactive hvPlot object.
Source code in src/monet_plots/plots/scatter.py
234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 | |
plot(scatter_kws=None, line_kws=None, **kwargs)
¶
Generate a static publication-quality scatter plot (Track A).
Parameters¶
scatter_kws : dict, optional
Additional keyword arguments for ax.scatter.
line_kws : dict, optional
Additional keyword arguments for the regression ax.plot.
**kwargs : Any
Secondary way to pass keyword arguments to ax.scatter.
Merged with scatter_kws.
Returns¶
matplotlib.axes.Axes The axes object with the scatter plot.
Notes¶
For massive datasets (> RAM), consider using Track B (Exploration)
tools like hvplot with rasterize=True.
Source code in src/monet_plots/plots/scatter.py
128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 | |