I wanted to ask that the following code doesn't work
c=vstack(tsne_data,label_1000).T
where shape of tsne_data is (1000,2) and the shape of label_1000 is (1000,)
but the following code works for the same
c=vstack(tsne_data.T,label_1000).T
for the same shape of tsne_data and label_1000
so I wanted to know that why do we need to use transpose with tsne_data in vstack