@@ -4,7 +4,7 @@ A Tab-Separate Values (TSV) file is a text file where tab characters (`\t`) sepa
44It is structured as a table, with each column representing a field of interest,
55and each row representing a single datapoint.
66
7- ### Reading a ` .tsv ` file
7+ ## Reading a ` .tsv ` file
88
99=== "python"
1010
@@ -52,10 +52,8 @@ and each row representing a single datapoint.
5252
5353=== "Excel / [ LibreOffice Calc] ( https://www.libreoffice.org/ ) "
5454
55+ ## Writing a ` .tsv ` file
5556
56-
57-
58- ### Writing a ` .tsv ` file
5957## Matlab
6058
6159``` matlab
@@ -74,7 +72,7 @@ writetable(t, fullfile(root_dir, bidsProject, bids_participants_name), ...
7472 'Delimiter', '\t');
7573```
7674
77- #### Octave
75+ ## Octave
7876
7977The ` writetable ` function is not implemented in older version of Octave
8078(e.g 4.2.2) and the ` table ` function differs from its matlab counterpart.
@@ -83,7 +81,6 @@ These are still in development for future
8381provided in the BIDS starter-kit repository in the matlab code folder
8482to create .tsv might not work with octave because of that reason.
8583
86-
8784## Excel
8885
8986- Create a file with the following columns
@@ -97,7 +94,6 @@ to create .tsv might not work with octave because of that reason.
9794
9895## R
9996
100-
10197### Writing a ` .tsv ` file
10298
10399When writing files, column and row names are always saved, we remove row names,
0 commit comments