文章目錄
  1. 1. plot包继续测试

plot包继续测试

本次测试直接插入html代码

1
library(plotly)
1
2
3
4
set.seed(100)
d <- diamonds[sample(nrow(diamonds), 1000), ]
plot_ly(d, x = carat, y = price, text = paste("Clarity: ", clarity),
mode = "markers", color = carat, size = carat)

文章目錄
  1. 1. plot包继续测试