Skip to content

Commit

Permalink
Replace "dimension" with "index column"
Browse files Browse the repository at this point in the history
  • Loading branch information
jp-dark committed Sep 19, 2024
1 parent 12eec91 commit 160585d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions python-spec/src/somacore/experiment.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,8 +70,8 @@ class Experiment(
"""A dataframe that stores the presence of obs in the spatial scenes.
This provides a join table for the obs ``soma_joinid`` and the scene names used in
the ``spatial`` collection. This dataframe must contain dimensions ``soma_joinid``
and ``scene_id``. The ``scene_id`` dimension must be a ``string`` dimension. The
the ``spatial`` collection. This dataframe must contain index columns ``soma_joinid``
and ``scene_id``. The ``scene_id`` column must have type ``string``. The
dataframe must contain a ``boolean`` column ``data``. The values of ``data`` are
``True`` if the obs with obsid ``soma_joinid`` is contained in the scene
``scene_id`` and ``False`` otherwise.
Expand Down
4 changes: 2 additions & 2 deletions python-spec/src/somacore/measurement.py
Original file line number Diff line number Diff line change
Expand Up @@ -104,8 +104,8 @@ class Measurement(
"""A dataframe that stores the presence of var in the spatial scenes.
This provides a join tabel for the var ``soma_joinid`` and the scene names used in
the ``spatial`` collection. This dataframe must contain dimensions ``soma_joinid``
and ``scene_id``. The ``scene_id`` dimension must be a ``string`` dimension. The
the ``spatial`` collection. This dataframe must contain index columns ``soma_joinid``
and ``scene_id``. The ``scene_id`` column must have type ``string``. The
dataframe must contain a ``boolean`` column ``data``. The values of ``data`` are
``True`` if the var with varid ``soma_joinid`` is contained in scene with name
``scene_id`` and ``False`` otherwise.
Expand Down

0 comments on commit 160585d

Please sign in to comment.