Skip to content

Commit c8cc21e

Browse files
committed
styu
1 parent 3d3aaa5 commit c8cc21e

File tree

1 file changed

+3
-7
lines changed
  • docs/getting_started/folders_and_files/metadata

1 file changed

+3
-7
lines changed

docs/getting_started/folders_and_files/metadata/tsv.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ A Tab-Separate Values (TSV) file is a text file where tab characters (`\t`) sepa
44
It is structured as a table, with each column representing a field of interest,
55
and 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

7977
The `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
8381
provided in the BIDS starter-kit repository in the matlab code folder
8482
to 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

10399
When writing files, column and row names are always saved, we remove row names,

0 commit comments

Comments
 (0)