Skip to content

Commit 9b2276d

Browse files
DOC: got rid of most of the :class:Axis in tutorial
1 parent cffb8c0 commit 9b2276d

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

nibabel/cifti2/cifti2_axes.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,22 @@
1010
* :class:`LabelAxis`: each row/column has a unique name and label table (with optional meta-data)
1111
* :class:`SeriesAxis`: each row/column is a timepoint, which increases monotonically
1212
13-
All of these classes are derived from the :class:`Axis` class.
13+
All of these classes are derived from the Axis class.
1414
1515
After loading a CIFTI-2 file a tuple of axes describing the rows and columns can be obtained
1616
from the :meth:`.cifti2.Cifti2Header.get_axis` method on the header object
1717
(e.g. ``nibabel.load(<filename>).header.get_axis()``). Inversely, a new
18-
:class:`.cifti2.Cifti2Header` object can be created from existing :class:`Axis` objects
18+
:class:`.cifti2.Cifti2Header` object can be created from existing Axis objects
1919
using the :meth:`.cifti2.Cifti2Header.from_axes` factory method.
2020
21-
CIFTI-2 :class:`Axis` objects of the same type can be concatenated using the '+'-operator.
21+
CIFTI-2 Axis objects of the same type can be concatenated using the '+'-operator.
2222
Numpy indexing also works on axes
2323
(except for SeriesAxis objects, which have to remain monotonically increasing or decreasing).
2424
2525
Creating new CIFTI-2 axes
2626
-----------------------
27-
New :class:`Axis` objects can be constructed by providing a description for what is contained
28-
in each row/column of the described tensor. For each :class:`Axis` sub-class this descriptor is:
27+
New Axis objects can be constructed by providing a description for what is contained
28+
in each row/column of the described tensor. For each Axis sub-class this descriptor is:
2929
3030
* :class:`BrainModelAxis`: a CIFTI-2 structure name and a voxel or vertex index
3131
* :class:`ParcelsAxis`: a name and a sequence of voxel and vertex indices

0 commit comments

Comments
 (0)