From 5d40e0a5cecaafc881334f745da5d888c8fbf449 Mon Sep 17 00:00:00 2001 From: Pete R Jemian Date: Fri, 14 Jun 2024 18:24:28 -0500 Subject: [PATCH] Update docs/source/howto/_ad_v_motors.ipynb Co-authored-by: Fanny Rodolakis <39918069+rodolakis@users.noreply.github.com> --- docs/source/howto/_ad_v_motors.ipynb | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docs/source/howto/_ad_v_motors.ipynb b/docs/source/howto/_ad_v_motors.ipynb index 9f79ba1f..25ed0e59 100644 --- a/docs/source/howto/_ad_v_motors.ipynb +++ b/docs/source/howto/_ad_v_motors.ipynb @@ -1419,9 +1419,13 @@ } ], "source": [ + "# Get the dataset from the most recent run\n", "dataset = cat[uids[-1]].primary.read()\n", + "# Extract the image data\n", "image_data = dataset[\"simdet_image\"]\n", + "# Print the shape of the image data\n", "print(f\"{image_data.shape=!r}\")\n", + "# Display the dataset\n", "dataset" ] },