You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[1] "Using provided global sigma 16"
Warning message:
In DiffusionMap(data.use, sigma = sigma.use, k = knn, n_eigs = dcs.store, :
You have 15659 genes. Consider passing e.g. n_pcs = 50 to speed up computation.
It seems that the calcDM is passing a normalized data matrix to DiffusionMap which is not properly scaled. When I add n_pcs=50 in the parameter of DiffusionMap the results turns to be simillar to the Quick Start guide.
# Calculate the diffusion map#dm <- DiffusionMap(data.use, sigma=sigma.use, k=knn, n_eigs = dcs.store, density_norm = density.norm, distance=distance[1]) # the original line 110dm<- DiffusionMap(data.use, sigma=sigma.use, k=knn, n_eigs=dcs.store, density_norm=density.norm, distance=distance[1], n_pcs=50) # the change I made
The text was updated successfully, but these errors were encountered:
A warning code shows when I run the codes in URD: Quick Start after calcDM and the following plotDimArray function returns an odd ploting result.
It seems that the calcDM is passing a normalized data matrix to DiffusionMap which is not properly scaled. When I add n_pcs=50 in the parameter of DiffusionMap the results turns to be simillar to the Quick Start guide.
The text was updated successfully, but these errors were encountered: