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" ] },