我想散布3D tSNE图。
我在2d中完成了相同类型的绘图 这是函数调用:
pl <- plot_ly(tsne_df, x = ~tSNE1, y = ~tSNE2, z = ~tSNE3, color = ~cell_clustering, colors = color_clusters)
add_markers() %>%
layout(scene = list(xaxis = list(title = 'x-tSNE'),
yaxis = list(title = 'y-tSNE'),
zaxis = list(title = 'z-tSNE')))
没有错误消息,但我看不到该图。仅当另存为png时 这是我看到的: enter image description here 这是下载的图像: enter image description here