Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

pandas join two series on index

# credit to Stack Overflow user in the source link

s1 = pd.Series([1, 2], index=['A', 'B'], name='s1')
s2 = pd.Series([3, 4], index=['A', 'B'], name='s2')

pd.concat([s1, s2], axis=1)
Out:
   s1  s2
A   1   3
B   2   4

pd.concat([s1, s2], axis=1).reset_index()
Out:
  index  s1  s2
0     A   1   3
1     B   2   4
Comment

PREVIOUS NEXT
Code Example
Python :: list methods python 
Python :: run django server 
Python :: how to compare current date to future date pythono 
Python :: python tkinter quit button 
Python :: how to pick a random english word from a list 
Python :: python loop break on keypress 
Python :: createview 
Python :: python range backward 
Python :: what is self keyword in python 
Python :: openpyxl add worksheet 
Python :: np.loadtext 
Python :: minimize window with python 
Python :: how to append element python 
Python :: https flask 
Python :: python print do not use scientific notation 
Python :: python print unicode character 
Python :: how to set background color of an image to transparent in pygame 
Python :: np load csv 
Python :: highlight max value in table pandas dataframe 
Python :: play music with time in python 
Python :: django rest framework simple jwt 
Python :: comment concatener deux listes python 
Python :: pandas replace values with only whitespace to null 
Python :: python 1 to 01 
Python :: Network.py socket 
Python :: python counter least common 
Python :: display Surface quit 
Python :: python unzip list 
Python :: flask mail python 
Python :: global keyword python 
ADD CONTENT
Topic
Content
Source link
Name
7+9 =