R语言 粗暴的数据可视化#2 简单数据3D饼图
2020-08-07 本文已影响0人
医学小蛋散
前言:
让我们粗暴地解决问题 !
在研究的路上,很多东西不是难的,但是就是没有人带而已,我不想其他人也走我走过的弯路。
如果有什么问题、需要R代码文件、示例数据集,欢迎在下方评论。
如果连学不来,没时间学,不介意地话就私信我,我来做吧,文章带上名字就好~
如图:
3D饼图代码:
#3D饼图
#需要使用附加包来绘制。
#软件包plotrix中有一个名为pie3D()的函数,用于此效果。
#如果没有安装软件库:plotrix,可先执行install.packages("plotrix")来安装。
#install.packages("plotrix")
# Get the library.
library("plotrix")
# Create data for the graph.
x <- c(20, 30, 40,10)
lbl <- c("A", "B", "C", "D")
# Give the chart file a name.
png(file = "3d_pie_chart.jpg")
# Plot the chart.explode = 0.1参数就是饼分得开不开,数字越大,分得越开。
pie3D(x,labels = lbl,explode = 0.1, main = "3D Pie Chart")
# Save the file.
dev.off()
视频链接:
https://www.bilibili.com/video/BV1PD4y1U7mS/