I got a 2*86 matrix. And I want to apply umap on this matrix in Julia. So my code is
embedding = umap(matrix; n_neighbors=2, min_dist=0.1, n_epochs=200)
While I got the error "ArgumentError: size(X, 1) must be greater than n_components and n_components must be greater than 1" How to solve this error?