I'm not really familiar in python in such transformations, but I need a help to transforming one 1D numpy array of shape eg. (17000) into 2D numpy array (17000, 2) in such way, that we will have such structure
1D array (value1, value2, value3, ..., value17000)
2D array ((1, value1), (2, value2), (3, value3), ... (17000, value17000))
so in short words add a new row that will have a number of index from specific order). Is there any efficient way to do this transform without writing a code, that will iterate over all values and copy that, but maybe that will do it in one-line transform?