Skip to content

Commit 4d50461

Browse files
Merge pull request #262 from coding-for-reproducible-research/color_blind_safe_figures
Remove old non colourblind safe images
2 parents 2986525 + dce3b2a commit 4d50461

File tree

4 files changed

+2
-147
lines changed

4 files changed

+2
-147
lines changed

individual_modules/introduction_to_python/analysis_task_1.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -314,7 +314,7 @@
314314
"row 2: ['G', 'H', 'I']. Starting in the upper left hand corner, data[0, 0] = 'A', data[0, 1] = 'B',\n",
315315
"data[0, 2] = 'C', data[1, 0] = 'D', data[1, 1] = 'E', data[1, 2] = 'F', data[2, 0] = 'G',\n",
316316
"data[2, 1] = 'H', and data[2, 2] = 'I',\n",
317-
"in the bottom right hand corner.](images/python-zero-index.svg)\n",
317+
"in the bottom right hand corner.](images/python-zero-index.png)\n",
318318
"\n",
319319
"## In the Corner\n",
320320
"What may also surprise you is that when Python displays an array, it shows the element with index `[0, 0]` in the upper left corner rather than the lower left. This is consistent with the way mathematicians draw matrices but different from the Cartesian coordinates. The indices are (row, column) instead of (column, row) for the same reason, which can be confusing when plotting data.\n",

individual_modules/introduction_to_python/images/python-zero-index.svg

Lines changed: 0 additions & 141 deletions
This file was deleted.

individual_modules/introduction_to_version_control/images/branch.svg

Lines changed: 0 additions & 4 deletions
This file was deleted.

individual_modules/introduction_to_version_control/local_branches.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@
5050
"it as a separate timeline of changes that runs in parallel with the main timeline. Each branch contains a copy of the \n",
5151
"entire codebase, with its own set of changes.\n",
5252
"\n",
53-
"![A Git branch](images/branch.svg)\n",
53+
"![A Git branch](images/branch.png)\n",
5454
"\n",
5555
"Git branches are incredibly useful for collaborative development, as they allow multiple developers to work on \n",
5656
"different features or fixes simultaneously, without stepping on each other's toes. They also provide a way to \n",

0 commit comments

Comments
 (0)