Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

Concatenating objects in pandas

df1 = pd.DataFrame(
   ...:     {
   ...:         "A": ["A0", "A1", "A2", "A3"],
   ...:         "B": ["B0", "B1", "B2", "B3"],
   ...:         "C": ["C0", "C1", "C2", "C3"],
   ...:         "D": ["D0", "D1", "D2", "D3"],
   ...:     },
   ...:     index=[0, 1, 2, 3],
   ...: )
   ...: 

In [2]: df2 = pd.DataFrame(
   ...:     {
   ...:         "A": ["A4", "A5", "A6", "A7"],
   ...:         "B": ["B4", "B5", "B6", "B7"],
   ...:         "C": ["C4", "C5", "C6", "C7"],
   ...:         "D": ["D4", "D5", "D6", "D7"],
   ...:     },
   ...:     index=[4, 5, 6, 7],
   ...: )
   ...: 

In [3]: df3 = pd.DataFrame(
   ...:     {
   ...:         "A": ["A8", "A9", "A10", "A11"],
   ...:         "B": ["B8", "B9", "B10", "B11"],
   ...:         "C": ["C8", "C9", "C10", "C11"],
   ...:         "D": ["D8", "D9", "D10", "D11"],
   ...:     },
   ...:     index=[8, 9, 10, 11],
   ...: )
   ...: 

In [4]: frames = [df1, df2, df3]

In [5]: result = pd.concat(frames)
Comment

PREVIOUS NEXT
Code Example
Python :: python keyerror 
Python :: pydrive download by url 
Python :: python in kali linux 
Python :: django upload multiple files 
Python :: sqlite3 python parameterized query insert into 
Python :: gfg placement course 
Python :: python iteration 
Python :: Palindrome in Python Using while loop for string 
Python :: Python script from c++ 
Python :: program to demonstrate encapsulation in python 
Python :: python check if false in dict 
Python :: How to Get the Symmetric Difference of Sets in Python 
Python :: python import as 
Python :: ner spacy 
Python :: python write a line to a file 
Python :: pandas multiply all dataframe 
Python :: python equivalent of R sample function 
Python :: plot histogram from counts and bin edges 
Python :: how to create a network scanner in python 
Python :: python argparse option groups 
Python :: pandas python example 
Python :: append and extend in python 
Python :: palindrom python rekursiv 
Python :: extracting values in pandas 
Python :: python how to use rnage 
Python :: length of dictionary in python 
Python :: astype float across columns pandas 
Python :: python dynamic variable name 
Python :: post from postman and receive in python 
Python :: pca in python 
ADD CONTENT
Topic
Content
Source link
Name
7+1 =