scan_plot_manager¶
Plot Manager for the Scan object
ScanPlotManager
¶
ScanPlotManager 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 |
|---|---|---|---|
scan
|
NexusScan
|
NexusScan object |
required |
Source code in mmg_toolbox/plotting/scan_plot_manager.py
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 | |
detail(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 |
|---|---|---|---|
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/scan_plot_manager.py
image(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 |
|---|---|---|---|
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
|
axes object |
Source code in mmg_toolbox/plotting/scan_plot_manager.py
image_histogram(index=None, axes=None, **kwargs)
¶
Plot image in matplotlib figure (if available)
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
index
|
int | tuple | slice | None
|
int, detector image index, 0-length of scan, if None, use centre index |
None
|
axes
|
Axes | None
|
matplotlib axes to plot on (None to create figure) |
None
|
kwargs
|
additional arguments for plot_detector_image |
{}
|
|
cut_ratios
|
list of cut-ratios, each cut has a different colour and given as ratio of max intensity |
required |
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/scan_plot_manager.py
plot(xaxis='axes', yaxis='signal', *args, axes=None, **kwargs)
¶
Create matplotlib figure with plot of the scan
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
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'
|
args
|
given directly to plt.plot(..., args, *kwars) |
()
|
|
axes
|
Axes | None
|
matplotlib.axes subplot, or None to create a figure |
None
|
kwargs
|
given directly to plt.plot(..., args, *kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
Axes
|
axes object |
Source code in mmg_toolbox/plotting/scan_plot_manager.py
plotline(xaxis='axes', yaxis='signal', *args, **kwargs)
¶
Plot scanned datasets on matplotlib axes subplot
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
xaxis
|
str
|
str name or address of array to plot on x axis |
'axes'
|
yaxis
|
str
|
str name or address of array to plot on y axis |
'signal'
|
args
|
given directly to plt.plot(..., args, *kwars) |
()
|
|
axes
|
matplotlib.axes subplot, or None to use plt.gca() |
required | |
kwargs
|
given directly to plt.plot(..., args, *kwars) |
{}
|
Returns:
| Type | Description |
|---|---|
|
list lines object, output of plot |
Source code in mmg_toolbox/plotting/scan_plot_manager.py
scananddetector(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 |
|---|---|---|---|
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 |