Horje
create dict from two columns pandas Code Example
dictionary from two columns pandas
pd.Series(df.A.values,index=df.B).to_dict()
create dict from two columns pandas
In [6]: df = pd.DataFrame(randint(0,10,10000).reshape(5000,2),columns=list('AB'))

In [7]: %timeit dict(zip(df.A,df.B))
1000 loops, best of 3: 1.27 ms per loop

In [8]: %timeit pd.Series(df.A.values,index=df.B).to_dict()
1000 loops, best of 3: 987 us per loop
python how to create dict from dataframe based on 2 columns
In [9]: pd.Series(df.Letter.values,index=df.Position).to_dict()
Out[9]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}
pandas create dataframe from multiple dictionaries
sales = [{'account': 'Jones LLC', 'Jan': 150, 'Feb': 200, 'Mar': 140},
         {'account': 'Alpha Co',  'Jan': 200, 'Feb': 210, 'Mar': 215},
         {'account': 'Blue Inc',  'Jan': 50,  'Feb': 90,  'Mar': 95 }]
df = pd.DataFrame(sales)
Source: pbpython.com




Python

Related
ipywidegtes dropdown Code Example ipywidegtes dropdown Code Example
.pyc Code Example .pyc Code Example
remove first character from string python Code Example remove first character from string python Code Example
flask render_template Code Example flask render_template Code Example
check if anything in a list is in a string python Code Example check if anything in a list is in a string python Code Example

Type:
Code Example
Category:
Coding
Sub Category:
Code Example
Uploaded by:
Admin
Views:
10