predictions = [x6,x5,x4,x3,x2,x1]
predictions
Calling the above list yields the following arrays:
[array([782.36739152]),
array([783.31415872]),
array([726.90474426]),
array([772.08910103]),
array([728.79734162]),
array([753.67887657])]
Yet I would like to print or call just the numbers inside, no array or brackets around the numbers.
Using the function below cleanly saves just the numbers to CSV, but I DON'T want to save the numbers, I want to call them inside iPython:
np.savetxt("P:/Earnest/Old/R/OutputPython.csv", predictions, delimiter=",")
How can I achieve this?