I am having trouble to convert my array of array to an array of string :
import numpy as np
X = np.array([[-1, -1], [-2, -1], [-3, -2], [1, 1], [2, 1], [3, 2]])
I want to build a dataframe that would look like :
"coordinate"
0 '-1 -1'
1 '-2 -1'
2 '-3 -2'
3 '1 1'
4 '2 1'
5 '3 2'