0
点赞
收藏
分享

微信扫一扫

基本3D散点图绘制和Correlogram of mtcars intercorrelations---R语言

勇敢乌龟 2022-04-30 阅读 37

在这里插入图片描述
在这里插入图片描述

library(scatterplot3d)
attach(mtcars)
scatterplot3d(wt,disp,mpg,pch=16,highlight.3d=TRUE,type="h",main="Basic 3D Scatter Plot")```

```r
library(corrgram)
corrgram(mtcars,order=TRUE,lower.panel=panel.shade,upper.panel=panel.pie,text.panel=panel.txt,main="Correlogram of mtcars intercorrelations")```

举报

相关推荐

0 条评论