39. Concat Pandas Series/DataFrames (Part 1) | Python Pandas Tutorial

Published: 29 January 2021
on channel: Data Thinkers
410
13

The concat() method is used to concatenate pandas object (Series/DataFrames) along a particular axis (means Horizontally or Vertically).
axis=0,
ignore_index: bool = False,
join='outer',
keys=None,
names=None,
verify_integrity: bool = False,
sort: bool = False,
------------------------------------
Parameters
-----------------------------------
objs : a sequence or mapping of Series or DataFrame objects
------------------------------------
axis : {0/'index', 1/'columns'}, default 0
axis = 0 Vertically (row) [Default]

axis = 1 Horizontally (Column).
------------------------------------
ignore_index : bool, default False
If True, do not use the index values along the concatenation axis.
The resulting axis will be labeled 0, ..., n - 1.
This is useful if you are concatenating objects where the concatenation axis does not have meaningful indexing information.
----------------------------------
The axis to concatenate along.
join : {'inner', 'outer'}, default 'outer'
Inner join only returns rows whose index is present in both data frames.
----------------------------------
axis = 0 Vertically (row) [Default]

axis = 1 Horizontally (Column).
------------------------------------------------------
Dataframes
----------------------------------------------------
data1 = {'Name':['Priyang','Aadhya','Vedant','Parshv','krisha'],
'Marks':[98,99,89,85,87]
}
data2={'Name':['Rahul','Anil','Paresh'],
'Marks':[98,99,89]
}
df1=pd.DataFrame(data1)
df2=pd.DataFrame(data2)
df1
df2
------------------------------------------------------------------


Github Link: https://github.com/PRIYANG-BHATT/Data...


If you enjoy these tutorials, like the video, and give it a thumbs-up, and also share these videos with your friends and families if you think these videos would help him.
Please consider clicking the SUBSCRIBE button to be notified of future videos.


pandas concat
dataframe concat
pandas join two dataframes
concat dataframe pandas
pandas concat two dataframes
combine two dataframes pandas
pandas concatenate two dataframes
pandas dataframe concat
df concat
concatenate two dataframes pandas
concat dataframes


#PandasConcat
#ConcatPandasDataframes