Enter search terms or a module, class or function name.
pandas.concat(objs,axis=0,join='outer',join_axes=None,ignore_index=False,keys=None,levels=None,names=None,verify_integrity=False,copy=True)[source]¶Concatenate pandas objects along a particular axis with optional set logicalong the other axes. Can also add a layer of hierarchical indexing on theconcatenation axis, which may be useful if the labels are the same (oroverlapping) on the passed axis number
| Parameters: | objs : a sequence or mapping of Series, DataFrame, or Panel objects
axis : {0/’index’, 1/’columns’}, default 0
join : {‘inner’, ‘outer’}, default ‘outer’
join_axes : list of Index objects
ignore_index : boolean, default False
keys : sequence, default None
levels : list of sequences, default None
names : list, default None
verify_integrity : boolean, default False
copy : boolean, default True
|
|---|---|
| Returns: | concatenated : type of objects |
Notes
The keys, levels, and names arguments are all optional