plotting
Plotting utilities. These are all fairly implementation specific right now, they should be refactored to rely on more generic units.
auto_relplot(data, x, y, ignore=None, merge=None, auto=True, errorbar=None, max_errorbars=20, **kwargs)
Make a relplot.
This function tries to be semi-clever about automatically selecting
which terms to use for hue, col, row, and style.
First it determines the categories of data as any fields other than
the ones specified in x and y or in ignore. We then assign the
category with the most unique entries to hue, the second most to
col, then row, and then style. Any categories beyond that are
combined with whatever the hue category is. Note that you can still
manually specify things with **kwargs.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
dict[str, NDArray]
|
The data to plot. Should be a dict that |
required |
x
|
str
|
The field to plot as x. |
required |
y
|
str
|
The field to plot as y. |
required |
ignore
|
list[str]
|
List of fields to ignore. |
None
|
merge
|
list[list[str]]
|
Fields to forcibly merge. Each element in this list should be a list
of fields. The merged field will have a name with the format
|
None
|
auto
|
bool
|
If False then all automatic features to pick categories for the
relplot are turned off and this is simply a wrapper to |
True
|
errorbar
|
str
|
The field containing the precomputed 1-sigma errors for |
None
|
**kwargs
|
Keyword arguments to pass to |
{}
|
Returns:
| Name | Type | Description |
|---|---|---|
plot |
FacetGrid
|
The plot output by |
Source code in lat_beams/plotting.py
381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 | |
plot_focal_plane(focal_plane, fit_plot_dir, ufm, obs_id)
Plot the results of a the focal plane fit. We assume here that all angular values are in radians and the amplitude is in pW.
The following plots will be made:
- Xi vs Eta scatter, file = "{ufm}_fp.png"
- Az vs El scatter, file = "{ufm}_enc.png"
- amplitude histogram, "{ufm}_fp_amp.png"
- FWHM histogram, "{ufm}_fp_fwhm.png"
- Hits histogram, "{ufm}_fp_hits.png"
- Reduced Chi Squared histogram, "{ufm}_fp_red_chisq.png"
- R^2 histogram, "{ufm}_fp_r2.png"
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
focal_plane
|
AxisManager
|
The fit focal plane.
Should contain the following fit parameters (all with the same number of elements):
|
required |
fit_plot_dir
|
str
|
The directory to save plots to. |
required |
ufm
|
str
|
The UFM that was fit. Used to determine filenames (see above). |
required |
Source code in lat_beams/plotting.py
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 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 | |
plot_map(data, posmap, pixsize, extent, cent, plot_dir, title, comp='T', log=False, log_thresh=0.001, append='', units='"')
Plot a beam map using imshow using the coolwarm colormap.
This also plots the profile of the map.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Float[ndarray, 'nx ny'] | ndmap
|
The beam map to plot. |
required |
posmap
|
Float[ndarray, '2 nx ny'] | ndmap
|
The position map for the beam map.
Should be generated by |
required |
extent
|
float
|
The radius of the plot to make in the same units as |
required |
cent
|
tuple[float, float]
|
The center of the beam map in the same units as |
required |
plot_dir
|
str
|
The directory to save plots to. |
required |
title
|
str
|
The base title of the plot. The full title will have the format "{title} {comp} {append} {'log10'*log}". The output file will use the full title as the filename but with whitespace replaced by '_' and 'map' or 'prof' inserted between "{title}" and "{comp}" depending on which plot it is. |
required |
comp
|
str
|
The comp of the map we are plotting. Should be "T", "Q", "U", "Qr", or "Ur". |
"T"
|
log
|
bool
|
If True then plot the log10 of the beam instead. This uses a symetric log norm, or signs are preserved. |
True
|
log_thresh
|
float
|
The threshold at which the log plot transitions to linear to avoid issues near values of 0. |
1e-3
|
append
|
str
|
String to append ti title and filename.
See |
""
|
units
|
str
|
The units of |
'"'
|
Source code in lat_beams/plotting.py
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 | |
plot_map_complete(data, posmap, pixsize, extent, cent, plot_dir, title, comps='TQU', log_thresh=0.001, append='', units='"', lognorm=1.0, qrur=False)
Wrapper for plot_map that plots all comps in both linear and log scales.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
data
|
Float[ndarray, 'nx ny'] | ndmap
|
The beam map to plot. |
required |
posmap
|
Float[ndarray, '2 nx ny'] | ndmap
|
The position map for the beam map.
Should be generated by |
required |
extent
|
float
|
The radius of the plot to make in the same units as |
required |
cent
|
tuple[float, float]
|
The center of the beam map in the same units as |
required |
plot_dir
|
str
|
The directory to save plots to. |
required |
title
|
str
|
The base title of the plot. The full title will have the format "{title} {comp} {append} {'log10'*log}". The output file will use the full title as the filename but with whitespace replaced by '_' and 'map' or 'prof' inserted between "{title}" and "{comp}" depending on which plot it is. |
required |
comps
|
str
|
The comps of the map we are plotting. Should be "T" or "TQU". |
"TQU"
|
log_thresh
|
float
|
The threshold at which the log plot transitions to linear to avoid issues near values of 0. |
1e-3
|
append
|
str
|
String to append ti title and filename.
See |
""
|
units
|
str
|
The units of |
'"'
|
lognorm
|
float
|
Value to normalize map by before plotting in log scale. All comps are normalized by this factor. This is useful for seeing the polarization of the beam relative to the peak of the temperature beam. |
1
|
qrur
|
bool
|
If True then also plot the radial QU maps.
This will raise an error if Q and U are not in |
False
|
Source code in lat_beams/plotting.py
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 | |
plot_tod(aman, sig_filt, tod_plot_dir, file_label, max_dets)
Plot a TOD and its filtered signal.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
aman
|
AxisManager
|
A TOD containing the unfiltered signal. |
required |
sig_filt
|
Float[ndarray, 'ndet nsamp']
|
The filtered signal. |
required |
tod_plot_dir
|
str
|
The directory to save plots to. |
required |
file_label
|
str
|
String to determine the file name. For the unfiltered signal the file is "{file_label}_tod.png". For the filtered signal the file is "{file_label}_tod_filt.png" |
required |
max_dets
|
str
|
The maximum number of detectors to plot.
If |
required |
Source code in lat_beams/plotting.py
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 | |