While going through Sklearn Tutorial I came accross this piece of code
order_centroids = original_space_centroids.argsort()[:, ::-1]
I do not understand what :, does.
The data stored in order_centroids is
array([[28060, 36086, 36087, ..., 29380, 28915, 28914],
[28060, 33378, 33379, ..., 9698, 26784, 15313],
[28060, 36209, 36211, ..., 15303, 22350, 48197],
...,
[28060, 36664, 36665, ..., 47821, 32892, 37525],
[56120, 31887, 31888, ..., 9603, 51250, 30224],
[56120, 33902, 33903, ..., 20843, 14948, 30316]])