Skip to content

Commit f472ae5

Browse files
committed
tweaks
1 parent ad63575 commit f472ae5

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

docs/source/directory_structure_changelog.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,4 @@ Preferred structure:
6464
6565
.. note::
6666
Migrating from the old Pose-app requires further changes.
67-
See the App Migration Guide.
67+
See the :doc:`migrating_to_app`.

docs/source/directory_structure_reference/label_csv_file_format.rst

Lines changed: 11 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,17 @@
33
Label CSV File Format
44
======================
55

6-
See data/mirror-mouse-example/CollectedData.csv in the git repo
6+
See `data/mirror-mouse-example/CollectedData.csv <https://github.com/paninski-lab/lightning-pose/blob/main/data/mirror-mouse-example/CollectedData.csv>`_ in the git repo
77
for an example of the expected format of our label files.
88

99
For multiview projects, each view has its own label file. The label files are
10-
aligned across views: the Nth row represents the same frame across files.
10+
aligned across views: the Nth row represents the same frame across files.
11+
12+
Manipulating label files
13+
-------------------------
14+
15+
Label files are intended to be parsed as pandas dataframes like so:
16+
17+
.. code-block:: python
18+
19+
pd.read_csv(csv_file, header=[0,1,2], index_col=0)

0 commit comments

Comments
 (0)