Skip to content

Python pandas #
Find similar titles

http://pandas.pydata.org

Data frame

Tips #

#!python
Position    Letter
1           a
2           b
3           c

In [9]: Series(df.Letter.values,index=df.Position).to_dict()
Out[9]: {1: 'a', 2: 'b', 3: 'c', 4: 'd', 5: 'e'}

Tutorials #

vs. R #

Incoming Links #

Related Articles #

Suggested Pages #

0.0.1_20140628_0