I have a function that works as expected and outputs 4 values
targets(0.0034) #calling the function
(1014.0, 260, 176, 84)
All I want to do is to put these values into a data frame so it looks like this
value 1 value 2 value 3 value 4
0 1014 260 176 84
I have tried
to make a new dataframe new = pd.DataFrame(columns=['value1','value2','value3','value4'])
then tried to append in different ways but keep getting stuck. I
Have tried to reassign the values but everything I have tried seems to be a dead end.
What am I missing? Thanks!