Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

create pandas dataframe from dictionary orient index

data = {'row_1': [3, 2, 1, 0], 'row_2': ['a', 'b', 'c', 'd']}
>>> pd.DataFrame.from_dict(data, orient='index')
       0  1  2  3
row_1  3  2  1  0
row_2  a  b  c  d
Source by pandas.pydata.org #
 
PREVIOUS NEXT
Tagged: #create #pandas #dataframe #dictionary #orient #index
ADD COMMENT
Topic
Name
3+6 =