exp_plot_manager¶
Plot Manager for the Experiment object
ExperimentPlotManager
¶
ExperimentPlotManager scan.plot = ScanPlotManager(scan) scan.plot() # plot default axes scan.plot.plot(xaxis, yaxis) # creates figure scan.plot.plotline(xaxis, yaxis) # plots line on current figure scan.plot.image() # create figure and display detector image
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
experiment
|
Experiment
|
Experiment object |
required |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
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 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 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 | |
detail(scan_file=-1, hdf_map=None, xaxis='axes', yaxis='signal', index=None, clim=None, cmap=DEFAULT_CMAP, **kwargs)
¶
Create matplotlib figure with plot of the scan and detector image
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_file
|
int | str
|
scan number or filename |
-1
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or address of array to plot on x axis |
'axes'
|
yaxis
|
str | list[str]
|
str name or address of array to plot on y axis, also accepts list of names for multiple plots |
'signal'
|
index
|
int | tuple | slice | None
|
int, detector image index, 0-length of scan, if None, use centre index |
None
|
clim
|
tuple[float, float] | None
|
[min, max] colormap cut-offs (None for auto) |
None
|
cmap
|
str
|
str colormap name (None for auto) |
DEFAULT_CMAP
|
kwargs
|
given directly to plt.plot(..., args, *kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
Figure
|
figure object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
image(scan_file=-1, hdf_map=None, index=None, xaxis='axes', axes=None, clim=None, cmap=DEFAULT_CMAP, colorbar=False, **kwargs)
¶
Plot image in matplotlib figure (if available)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_file
|
int | str
|
scan number or filename |
-1
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
index
|
int | tuple | slice | None
|
int, detector image index, 0-length of scan, if None, use centre index |
None
|
xaxis
|
str
|
name or address of xaxis dataset |
'axes'
|
axes
|
Axes | None
|
matplotlib axes to plot on (None to create figure) |
None
|
clim
|
tuple[float, float] | None
|
[min, max] colormap cut-offs (None for auto) |
None
|
cmap
|
str
|
str colormap name (None for auto) |
DEFAULT_CMAP
|
colorbar
|
bool
|
False/ True add colorbar to plot |
False
|
kwargs
|
additional arguments for plot_detector_image |
{}
|
Returns:
| Type | Description |
|---|---|
Axes | None
|
axes object or None if no image |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
lines_3d(*scan_files, hdf_map=None, xaxis='axes', signal='signal', values=None, axes=None, legend=False, **kwargs)
¶
Create matplotlib figure with a 2D image
axes = exp.plot.surface_2d(*range(-10, 0), xaxis='eta', yaxis='roi2_sum', value='Tsample')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or path of array to plot on x axis |
'axes'
|
signal
|
str
|
str name or path of array to plot on z axis |
'signal'
|
values
|
str | None
|
str name or path of float value to distinguish different scans |
None
|
axes
|
Axes3D | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
legend
|
bool
|
if True, adds a legend |
False
|
kwargs
|
given directly to plt.plot(..., **kwargs) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes3D
|
axes object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
metadata(*scan_files, values, hdf_map=None, axes=None)
¶
Create matplotlib figure with plot of metadata vs scan number
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
values
|
str | list[str]
|
field name or path of float value to distinguish different scans |
required |
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
axes
|
Axes | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
multi_lines(*scan_files, hdf_map=None, xaxis='axes', yaxis='signal', value=None, axes=None, **kwargs)
¶
Create matplotlib figure with a line plot from a or several scans
axes = exp.plot.multi_lines(*range(-10, 0), xaxis='eta', yaxis='roi2_sum', value='Tsample')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or path of array to plot on x axis |
'axes'
|
yaxis
|
str
|
str name or path of array to plot on y axis |
'signal'
|
value
|
str | None
|
str name or path of float value to distinguish lines |
None
|
axes
|
Axes | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
kwargs
|
given directly to plt.plot(..., **kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
multi_plot(*scan_files, hdf_map=None, xaxis='axes', yaxis='signal', value=None, subplots=(4, 4), **kwargs)
¶
Create matplotlib figure with a line plot from a or several scans
axes = exp.plot.multi_plot(*range(-10, 0), xaxis='eta', yaxis='roi2_sum', value='Tsample')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or path of array to plot on x axis |
'axes'
|
yaxis
|
str | list[str]
|
str name or path of array to plot on y axis, or a list of names for multiple plots per axis |
'signal'
|
value
|
str | None
|
str name or path of float value to distinguish lines |
None
|
subplots
|
tuple[int, int]
|
[int, int] number of subplots per figure [vertical, horizontal] |
(4, 4)
|
kwargs
|
given directly to plt.plot(..., **kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
list[tuple[Figure, Axes]]
|
list of figures |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
plot(*scan_files, hdf_map=None, xaxis='axes', yaxis='signal', axes=None, **kwargs)
¶
Create matplotlib figure with a line plot from a or several scans
axes = exp.plot.plot(file1, file2, xaxis='eta', yaxis='roi2_sum')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or address of array to plot on x axis |
'axes'
|
yaxis
|
str | list[str]
|
str name or address of array to plot on y axis, also accepts list of names for multiple lines |
'signal'
|
axes
|
Axes | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
kwargs
|
given directly to plt.plot(..., **kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
surface_2d(*scan_files, hdf_map=None, xaxis='axes', signal='signal', values=None, axes=None, clim=None, axlim='image', **kwargs)
¶
Create matplotlib figure with a 2D image
axes = exp.plot.surface_2d(*range(-10, 0), xaxis='eta', signal='roi2_sum', values='Tsample')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or path of array to plot on x axis |
'axes'
|
signal
|
str
|
str name or path of array to plot on z axis |
'signal'
|
values
|
str | None
|
str name or path of float value to distinguish different scans |
None
|
axes
|
Axes | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
clim
|
tuple[float, float] | None
|
None or [min, max] values for color cutoff from plt.clim |
None
|
axlim
|
str
|
axis limits from plt.axis |
'image'
|
kwargs
|
given directly to plt.pcolormesh(..., **kwargs) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/exp_plot_manager.py
surface_3d(*scan_files, hdf_map=None, xaxis='axes', signal='signal', values=None, axes=None, clim=None, axlim='image', **kwargs)
¶
Create matplotlib figure with a 3D image
axes = exp.plot.surface_3d(*range(-10, 0), xaxis='eta', yaxis='roi2_sum', value='Tsample')
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
scan_files
|
int | str
|
scan number or filename (multiple allowed) |
()
|
hdf_map
|
NexusMap | None
|
hdfmap object or None |
None
|
xaxis
|
str
|
str name or path of array to plot on x axis |
'axes'
|
signal
|
str
|
str name or path of array to plot on z axis |
'signal'
|
values
|
str | None
|
str name or path of float value to distinguish different scans |
None
|
axes
|
Axes3D | None
|
matplotlib.axes3D subplot, or None to create a figure |
None
|
clim
|
tuple[float, float] | None
|
None or [min, max] values for color cutoff from plt.clim |
None
|
axlim
|
str
|
axis limits from plt.axis |
'image'
|
kwargs
|
given directly to plt.pcolormesh(..., **kwargs) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes3D
|
axes object |