library(plotly) library(reshape2) # Create data x = seq(1,6,0.25) y = x^2 z=-(x-3.5)^2 # fit linear model m1 = lm(z~x+y) # create surface ...
確定! 回上一頁