I am trying to create a matrix / DataFrame with the numbers stored in 2 variables
x = np.linspace(0,50)
y = np.exp(x)
and I would like them to look like this:
x | y
___________________
0 | 1.0...
1 | 2.77...
2 | 7.6...
... | ...
50 | 5.18e+21...
I would like it to be in a DataFrame so I can work with it with the pandas library.
Thanks in advance
