Skip to content

Commit 699e604

Browse files
author
Andrew Yang
committed
Fix to previous commit
1 parent bc31ed0 commit 699e604

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/diffpy/utils/parsers/loaddata.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,10 @@ def loadData(filename, minrows=10, headers=False, hdel='=', hignore=None, **kwar
4141
kwargs -- keyword arguments that are passed to numpy.loadtxt including
4242
the following arguments below. (See also numpy.loadtxt for more
4343
details.)
44-
delimiter -- delimiter for the data in the block (default None). e.g. for
45-
comma-separated values in the datablock, set delimiter to ','.
44+
delimiter -- delimiter for the data in the block (default use whitespace).
45+
For comma-separated data blocks, set delimiter to ','.
4646
usecols -- zero-based index of columns to be loaded, by default use
47-
all detected columns. The reading skips data blocks that
47+
all detected columns. The reading skips data blocks that
4848
do not have the usecols-specified columns.
4949
unpack -- return data as a sequence of columns that allows tuple
5050
unpacking such as x, y = loadData(FILENAME, unpack=True).

0 commit comments

Comments
 (0)