From febb3c6473a839834dcb5e95fcdf61feec7628d5 Mon Sep 17 00:00:00 2001 From: jcohenadad Date: Tue, 23 Jan 2024 21:16:31 -0500 Subject: [PATCH] Sample and display CSF/SC T2starw and B1+ between C3-T2 Fixes #38, Fixes #75 --- data_processing.ipynb | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/data_processing.ipynb b/data_processing.ipynb index aa5c25c..9598e30 100644 --- a/data_processing.ipynb +++ b/data_processing.ipynb @@ -337,8 +337,8 @@ "# Fixed grid for x-axis\n", "x_grid = np.linspace(0, 1, 100)\n", "\n", - "# z-slices corresponding to levels C1 to T2 on the PAM50 template. These will be used to scale the x-label of each subject.\n", - "original_vector = np.array([984, 938, 907, 870, 833, 800, 769, 735, 692, 646])\n", + "# z-slices corresponding to levels C3 to T2 on the PAM50 template. These will be used to scale the x-label of each subject.\n", + "original_vector = np.array([907, 870, 833, 800, 769, 735, 692, 646])\n", "\n", "# Normalize the PAM50 z-slice numbers to the 1-0 range (to show inferior-superior instead of superior-inferior)\n", "min_val = original_vector.min()\n", @@ -546,8 +546,8 @@ "# Fixed grid for x-axis\n", "x_grid = np.linspace(0, 1, 100)\n", "\n", - "# z-slices corresponding to levels C1 to T2 on the PAM50 template. These will be used to scale the x-label of each subject.\n", - "original_vector = np.array([984, 938, 907, 870, 833, 800, 769, 735, 692, 646])\n", + "# z-slices corresponding to levels C3 to T2 on the PAM50 template. These will be used to scale the x-label of each subject.\n", + "original_vector = np.array([907, 870, 833, 800, 769, 735, 692, 646])\n", "\n", "# Normalize the PAM50 z-slice numbers to the 1-0 range (to show inferior-superior instead of superior-inferior)\n", "min_val = original_vector.min()\n",