渲染3D绘图图像时看不到任何绘图

时间:2019-06-08 10:46:20

标签: r r-plotly

我想散布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

0 个答案:

没有答案