我想繪製日期,x和y在R中的3D圖中(使用RStudio 0.99.903),R(3.3.2),scatterplot3d(0.3-40),rgl( 0.98.1) dates = c("2016-11-10","2016-11-20","2016-12-01","2016-12-15","2016-12-30")
x = rnorm(5,0,1)
y = rnorm(5,1,2)
A
我正在嘗試創建一個快速應用程序,讓用戶選擇3個變量並使用scatter3D重新生成3D散點圖。在使用閃光燈時我一直都會碰到這個錯誤,我看不出來糾正它。 Error: not all arguments have the same length 我的代碼也可以,如果更換: x = paste("df.output$",input$test,sep=""),
y = paste("df.output
我中的R由這兩個3D圖形,用兩個不同的功能: x <- c(0,50,100,150,200,250,300,350,400,450)
y <- c(0,50,100,150,200,250,300,350,400,450)
z <- c(1,2,1,1,2,1,2,1,2,1)
plot_ly(x=x,y=y,z=z)
scatterplot3d(x, y, z)
我想在這兩個曲線