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
In visualization.py (line 13), the styles is defined as: styles = ['g', 'r', 'b', 'y', 'k', 'm', 'c', 'greenyellow', 'lightcoral', 'teal']
So we try to run: Pa.Visualize(data, integrated_data, datatype, mode='UMAP') # with datatype
I got an error:
---> 11 plt.scatter(embedding[i][index,0], embedding[i][index,1], c=styles[j], s=5.)
12 plt.title(dataset_xyz[i])
13 if mode=='PCA':
IndexError: list index out of range
The text was updated successfully, but these errors were encountered:
Hi,
In visualization.py (line 13), the styles is defined as:
styles = ['g', 'r', 'b', 'y', 'k', 'm', 'c', 'greenyellow', 'lightcoral', 'teal']
So we try to run:
Pa.Visualize(data, integrated_data, datatype, mode='UMAP') # with datatype
I got an error:
The text was updated successfully, but these errors were encountered: