In User Guide of NumPy in tutorial for absulute beginners, i.e. in
documentation document doc/source/user/absulute_beginners.rst there was
a typo in the image np-indexing.png visualizing slices in Indexing
and slicing section. Namely, in the first image in mentioned section,
the last visualized array (under data[-2:]
command), there was a
picture of data[:]
or data[0:3]
(i.e. array([1,2,3])) presenting
the slice indexing. But it should be a picture of of data[-2:]
(i.e.
array([2,3])). This commit fixes this by adding additional picture of
array([2,3]) under data[-2:]
command and changing command above last
array([1,2,3]) pic to title named data
to preserve the idea behind
slice indexing.
1 untracked files changed.
Other files ignored by Codecov
doc/source/user/images/np_indexing.png
has changed.
No tracked files changed.
Files | Coverage |
---|---|
numpy | 83.74% |
Project Totals (157 files) | 83.74% |
Sunburst
The inner-most circle is the entire project, moving away from the center are folders then, finally, a single file.
The size and color of each slice is representing the number of statements and the coverage, respectively.
Icicle
The top section represents the entire project. Proceeding with folders and finally individual files.
The size and color of each slice is representing the number of statements and the coverage, respectively.