chapter 2

作者: 甜甜圈1314 | 来源:发表于2024-05-24 22:17 被阅读0次
    x=rnorm(100)
    y=rnorm(100)
    plot(x,y,xlab="this is the x-axis",ylab="this is the y-axis",main="Plot of X vs Y")
    
    散点图
    x=seq(-pi,pi,length=50)
    y=x
    f=outer(x,y,function(x,y)cos(y)/(1+x^2))#内积函数
    contour(x,y,f,nlevels=45,add=T)#生成等高线图以表示三维数据
    
    等高线图
    fa=(f-t(f))/2
    contour(x,y,fa,nlevels=15)
    image(x,y,fa)
    
    彩色等高线图
    persp(x,y,fa,theta=30,phi=40)#theta and phi控制绘图的角度
    
    三维立体图

    相关文章

      网友评论

          本文标题:chapter 2

          本文链接:https://www.haomeiwen.com/subject/hkoxqjtx.html