Skip to content

Commit aaba591

Browse files
committed
DOC: merging.rst changes
1 parent 215569a commit aaba591

File tree

1 file changed

+5
-4
lines changed

1 file changed

+5
-4
lines changed

doc/source/merging.rst

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@ takes a list or dict of homogeneously-typed objects and concatenates them with
5151
some configurable handling of "what to do with the other axes":
5252

5353
::
54+
5455
concat(objs, axis=0, join='outer', join_axes=None, ignore_index=False,
5556
keys=None, levels=None, names=None, verify_integrity=False)
5657

@@ -101,12 +102,12 @@ functionality below.
101102

102103
.. note::
103104
It is worth noting however, that ``concat`` (and therefore ``append``) makes
104-
a full copy of the data, and that constantly reusing this function can
105-
create a signifcant performance hit. If you need to use the operation over
106-
several datasets, use a list comprehension.
105+
a full copy of the data, and that constantly reusing this function can
106+
create a signifcant performance hit. If you need to use the operation over
107+
several datasets, use a list comprehension.
107108

108109
::
109-
110+
110111
frames = [ process_your_file(f) for f in files ]
111112
result = pd.concat(frames)
112113

0 commit comments

Comments
 (0)