create dataframe from two variables

Solutions on MaxInterview for create dataframe from two variables by the best coders in the world

showing results for - "create dataframe from two variables"
Eduardo
17 Sep 2016
1pd.DataFrame({'r': r, 's': s})
2
3Out: 
4    r   s
50   0   0
61   3   5
72   6  10
83   9  15
94  12  20