Skip to content

traj_plots

Helper module with plotting functions for the trajectory module.

plot_all_ax(x, dat, missing, xlab, ylab, title, plt_root)

Plot data with dimensions as seperate lines on the same plot. This doesn't show the direction of motions on the plot. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}.png.

Parameters:

Name Type Description Default
x NDArray[float64]

The x data to plot against. Should have shape (npoint,).

required
dat NDArray[float64]

The data to plot. Should have shape (npoint, ndim).

required
missing list[int]

A list of indices that will be flagged in the plot as only having partial data.

required
xlab str

The x label to use in the plot.

required
ylab str

The y label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
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
def plot_all_ax(
    x: NDArray[np.float64],
    dat: NDArray[np.float64],
    missing: list[int],
    xlab: str,
    ylab: str,
    title: str,
    plt_root: str,
):
    """
    Plot data with dimensions as seperate lines on the same plot.
    This doesn't show the direction of motions on the plot.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}.png`.

    Parameters
    ----------
    x : NDArray[np.float64]
        The x data to plot against.
        Should have shape `(npoint,)`.
    dat : NDArray[np.float64]
        The data to plot.
        Should have shape `(npoint, ndim)`.
    missing : list[int]
        A list of indices that will be flagged in the plot
        as only having partial data.
    xlab : str
        The x label to use in the plot.
    ylab : str
        The y label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    plt.scatter(x, dat[:, 0], alpha=0.5, label="x")
    plt.scatter(x, dat[:, 1], alpha=0.5, label="y")
    plt.scatter(x, dat[:, 2], alpha=0.5, label="z")
    plt.scatter(x[missing], dat[missing, 0], color="gray", marker="1")
    plt.scatter(x[missing], dat[missing, 1], color="gray", marker="1")
    plt.scatter(x[missing], dat[missing, 2], color="gray", marker="1")
    plt.legend()
    plt.xlabel(xlab)
    plt.ylabel(ylab)
    plt.title(title)
    plt.savefig(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}.png"),
        bbox_inches="tight",
    )
    plt.close()

plot_all_dir(x, dat, direction, missing, xlab, ylab, title, plt_root)

Plot data with directions as seperate lines on the same plot. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}.png.

Parameters:

Name Type Description Default
x NDArray[float64]

The x data to plot against. Should have shape (npoint,).

required
dat NDArray[float64]

The data to plot. Should have shape (npoint,).

required
direction NDArray[float64]

The direction of motion at each data point. Should have shape (npoint,).

required
missing list[int]

A list of indices that will be flagged in the plot as only having partial data.

required
xlab str

The x label to use in the plot.

required
ylab str

The y label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
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
def plot_all_dir(
    x: NDArray[np.float64],
    dat: NDArray[np.float64],
    direction: NDArray[np.float64],
    missing: list[int],
    xlab: str,
    ylab: str,
    title: str,
    plt_root: str,
):
    """
    Plot data with directions as seperate lines on the same plot.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}.png`.

    Parameters
    ----------
    x : NDArray[np.float64]
        The x data to plot against.
        Should have shape `(npoint,)`.
    dat : NDArray[np.float64]
        The data to plot.
        Should have shape `(npoint,)`.
    direction : NDArray[np.float64]
        The direction of motion at each data point.
        Should have shape `(npoint,)`.
    missing : list[int]
        A list of indices that will be flagged in the plot
        as only having partial data.
    xlab : str
        The x label to use in the plot.
    ylab : str
        The y label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    plt.scatter(
        x[direction == 0],
        dat[direction == 0],
        color="black",
        alpha=0.5,
        label="Stationary",
    )
    plt.scatter(
        x[direction < 0],
        dat[direction < 0],
        color="blue",
        alpha=0.5,
        label="Decreasing",
    )
    plt.scatter(
        x[direction > 0],
        dat[direction > 0],
        color="red",
        alpha=0.5,
        label="Increasing",
    )
    plt.scatter(x[missing], dat[missing], color="gray", alpha=1, marker="1")
    plt.legend()
    plt.xlabel(xlab)
    plt.ylabel(ylab)
    plt.title(title)
    plt.savefig(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}.png"),
        bbox_inches="tight",
    )
    plt.close()

plot_anim(coords, angle, data, xlab, ylab, title, plt_root)

Plot an animated scatter plot of data where each frame is a different sample. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}.png.

Parameters:

Name Type Description Default
coords NDArray[float64]

The xy coordinates to anchor the data to plot. Should have shape (npoint, 3).

required
angle NDArray[float64]

The angle of the element at each data point. Should have shape (npoint,).

required
data NDArray[float64]

The data to plot The first two collumn will be added to coords in each frame. The third collumn will be plotted as the color of the points. Should have shape (npoint, 3).

required
xlab str

The x label to use in the plot.

required
ylab str

The y label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
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
def plot_anim(coords, angle, data, xlab, ylab, title, plt_root):
    """
    Plot an animated scatter plot of data where each frame is a different sample.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}.png`.

    Parameters
    ----------
    coords : NDArray[np.float64]
        The xy coordinates to anchor the data to plot.
        Should have shape `(npoint, 3)`.
    angle : NDArray[np.float64]
        The angle of the element at each data point.
        Should have shape `(npoint,)`.
    data : NDArray[np.float64]
        The data to plot
        The first two collumn will be added to `coords` in each frame.
        The third collumn will be plotted as the color of the points.
        Should have shape `(npoint, 3)`.
    xlab : str
        The x label to use in the plot.
    ylab : str
        The y label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    if len(coords) != len(data) or len(coords) != len(angle):
        raise ValueError(
            "Coordinates, angle, and data do not agree on number of samples!"
        )
    fig, ax = plt.subplots()
    divider = make_axes_locatable(ax)
    cax = divider.append_axes("right", size="5%", pad=0.05)
    vmin, vmax = (np.min(data[:, :, 2]), np.max(data[:, :, 2]))

    def update(i):
        ax.clear()
        cax.clear()
        im = ax.scatter(
            coords[i, :, 0] + data[i, :, 0],
            coords[i, :, 1] + data[i, :, 1],
            c=data[i, :, 2],
            vmin=vmin,
            vmax=vmax,
        )
        ax.scatter(
            coords[i, :, 0],
            coords[i, :, 1],
            color="black",
            marker="x",
        )
        fig.colorbar(im, cax=cax)
        ax.set_xlabel(xlab)
        ax.set_ylabel(ylab)
        ax.set_title(f"{title} {angle[i]} degrees")
        ax.set_aspect("equal")
        return ax

    ani = animation.FuncAnimation(fig, update, frames=len(coords), interval=500)
    ani.save(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}.mkv"),
        writer="ffmpeg",
    )

plot_by_ax(x, dat, direction, missing, xax, xlab, ylab, title, plt_root)

Plot data with seperate subplots for each dimension. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}_{xax}.png.

Parameters:

Name Type Description Default
x NDArray[float64]

The x data to plot against. Should have shape (npoint,).

required
dat NDArray[float64]

The data to plot. Should have shape (npoint, ndim).

required
direction NDArray[float64]

The direction of motion at each data point. Should have shape (npoint,).

required
missing list[int]

A list of indices that will be flagged in the plot as only having partial data.

required
xax str

A description of the x axis for the file name.

required
xlab str

The x label to use in the plot.

required
ylab str

The y label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
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
def plot_by_ax(
    x: NDArray[np.float64],
    dat: NDArray[np.float64],
    direction: NDArray[np.float64],
    missing: list[int],
    xax: str,
    xlab: str,
    ylab: str,
    title: str,
    plt_root: str,
):
    """
    Plot data with seperate subplots for each dimension.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}_{xax}.png`.

    Parameters
    ----------
    x : NDArray[np.float64]
        The x data to plot against.
        Should have shape `(npoint,)`.
    dat : NDArray[np.float64]
        The data to plot.
        Should have shape `(npoint, ndim)`.
    direction : NDArray[np.float64]
        The direction of motion at each data point.
        Should have shape `(npoint,)`.
    missing : list[int]
        A list of indices that will be flagged in the plot
        as only having partial data.
    xax : str
        A description of the x axis for the file name.
    xlab : str
        The x label to use in the plot.
    ylab : str
        The y label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    _, axs = plt.subplots(3, 1, sharex=True)
    for i, dim in enumerate(["x", "y", "z"]):
        axs[i].scatter(
            x[direction == 0],
            dat[direction == 0, i],
            color="black",
            marker="o",
            alpha=0.25,
            label="Stationary",
        )
        axs[i].scatter(
            x[direction < 0],
            dat[direction < 0, i],
            color="blue",
            marker="x",
            alpha=0.25,
            label="Decreasing",
        )
        axs[i].scatter(
            x[direction > 0],
            dat[direction > 0, i],
            color="red",
            marker="+",
            alpha=0.25,
            label="Increasing",
        )
        axs[i].scatter(x[missing], dat[missing, i], color="gray", marker="1")
        axs[i].set_ylabel(f"{dim} {ylab}")
    axs[0].legend()
    axs[-1].set_xlabel(xlab)
    plt.suptitle(title)
    plt.savefig(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}_{xax}.png"),
        bbox_inches="tight",
    )
    plt.close()

plot_by_ax_point(names, x, dat, direction, missing, xax, xlab, title, plt_root)

Plot data with subplots organized such that each row is a different dimension and each collumn is a different physical location that was measured. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}_{xax}.png.

Parameters:

Name Type Description Default
names list[str] | NDArray[str_]

The names of the physically measured locations.

required
x NDArray[float64]

The x data to plot against. Should have shape (npoint,).

required
dat NDArray[float64]

The data to plot. Should have shape (npoint, nloc, ndim).

required
direction NDArray[float64]

The direction of motion at each data point. Should have shape (npoint,).

required
missing list[int]

A list of indices that will be flagged in the plot as only having partial data.

required
xax str

A description of the x axis for the file name.

required
xlab str

The x label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
 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
def plot_by_ax_point(
    names: list[str] | NDArray[np.str_],
    x: NDArray[np.float64],
    dat: NDArray[np.float64],
    direction: NDArray[np.float64],
    missing: list[int],
    xax: str,
    xlab: str,
    title: str,
    plt_root: str,
):
    """
    Plot data with subplots organized such that each row is a different dimension
    and each collumn is a different physical location that was measured.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}_{xax}.png`.

    Parameters
    ----------
    names : list[str] | NDArray[np.str_]
        The names of the physically measured locations.
    x : NDArray[np.float64]
        The x data to plot against.
        Should have shape `(npoint,)`.
    dat : NDArray[np.float64]
        The data to plot.
        Should have shape `(npoint, nloc, ndim)`.
    direction : NDArray[np.float64]
        The direction of motion at each data point.
        Should have shape `(npoint,)`.
    missing : list[int]
        A list of indices that will be flagged in the plot
        as only having partial data.
    xax : str
        A description of the x axis for the file name.
    xlab : str
        The x label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    _, axs = plt.subplots(
        3,
        len(names),
        sharex=True,
        sharey=False,
        figsize=(24, 20),
        layout="constrained",
    )
    axs = np.reshape(np.array(axs), (int(3), len(names)))
    for i, point in enumerate(names):
        for j, dim in enumerate(["x", "y", "z"]):
            axs[j, i].scatter(
                x[direction == 0],
                dat[direction == 0, i, j],
                color="black",
                marker="o",
                alpha=0.5,
                label="Stationary",
            )
            axs[j, i].scatter(
                x[direction < 0],
                dat[direction < 0, i, j],
                color="blue",
                marker="x",
                alpha=0.5,
                label="Decreasing",
            )
            axs[j, i].scatter(
                x[direction > 0],
                dat[direction > 0, i, j],
                color="red",
                marker="+",
                alpha=0.5,
                label="Increasing",
            )
            axs[j, i].scatter(x[missing], dat[missing, i, j], color="gray", marker="1")
            axs[0, i].set_title(point)
            axs[-1, i].set_xlabel(xlab)
            axs[j, 0].set_ylabel(f"{dim} (mm)")
    axs[-1, 0].legend()
    plt.suptitle(title)
    plt.savefig(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}_{xax}.png"),
        bbox_inches="tight",
    )
    plt.close()

plot_hist(dat, direction, xlab, title, plt_root)

Plot a histogram of data with directions as seperate histograms on the same plot. The plot will be saved to plt_root/{title.lower().replace(' ' , '_')}.png.

Parameters:

Name Type Description Default
dat NDArray[float64]

The data to plot. Should have shape (npoint,).

required
direction NDArray[float64]

The direction of motion at each data point. Should have shape (npoint,).

required
xlab str

The x label to use in the plot.

required
title str

The title of the plot.

required
plt_root str

The directory to save plots to.

required
Source code in lat_alignment/traj_plots.py
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
def plot_hist(
    dat: NDArray[np.float64],
    direction: NDArray[np.float64],
    xlab: str,
    title: str,
    plt_root: str,
):
    """
    Plot a histogram of data with directions as seperate histograms on the same plot.
    The plot will be saved to `plt_root/{title.lower().replace(' ' , '_')}.png`.

    Parameters
    ----------
    dat : NDArray[np.float64]
        The data to plot.
        Should have shape `(npoint,)`.
    direction : NDArray[np.float64]
        The direction of motion at each data point.
        Should have shape `(npoint,)`.
    xlab : str
        The x label to use in the plot.
    title : str
        The title of the plot.
    plt_root : str
        The directory to save plots to.
    """
    if len(direction == 0) > 0 and np.sum(np.isfinite(dat[direction == 0])) > 0:
        plt.hist(
            dat[direction == 0],
            bins="auto",
            color="black",
            alpha=0.5,
            label="Stationary",
        )
    if len(direction < 0) > 0 and np.sum(np.isfinite(dat[direction < 0])) > 0:
        plt.hist(
            dat[direction < 0],
            bins="auto",
            color="blue",
            alpha=0.5,
            label="Decreasing",
        )
    if len(direction > 0) > 0 and np.sum(np.isfinite(dat[direction > 0])) > 0:
        plt.hist(
            dat[direction > 0],
            bins="auto",
            color="red",
            alpha=0.5,
            label="Increasing",
        )
    plt.legend()
    plt.xlabel(xlab)
    plt.ylabel("Counts (#)")
    plt.title(title)
    plt.savefig(
        os.path.join(plt_root, f"{title.lower().replace(' ' , '_')}.png"),
        bbox_inches="tight",
    )

    plt.close()