本文概述
- 标题和颜色
- 切片百分比和图表图例
- 3维饼图
饼图是通过pie()函数创建的, 该函数以正数作为向量输入。附加参数用于控制标签, 颜色, 标题等。
pie()函数的语法如下:
pie(X, Labels, Radius, Main, Col, Clockwise)
【R饼图示例图解】这里,
- X是一个向量, 其中包含饼图中使用的数值。
- 标签用于对切片进行描述。
- 半径描述饼图的半径。
- Main描述图表的标题。
- Col定义调色板。
- 顺时针是一个逻辑值, 指示在其中绘制切片的顺时针或逆时针方向。
# Creating data for the graph.x <
- c(20, 65, 15, 50)labels <
- c("India", "America", "Shri Lanka", "Nepal")# Giving the chart file a name.png(file = "Country.jpg")# Plotting the chart.pie(x, labels)# Saving the file.dev.off()
输出
文章图片
标题和颜色 饼图具有更多功能, 可以通过在pie()函数中添加更多参数来使用。我们可以通过传递main参数来为饼图命名。它将饼图的标题告知pie()函数。除此之外, 我们可以通过传递col参数在绘制图表时使用彩虹色托盘。
注意:托盘的长度将与图表中的值相同。因此, 我们将使用length()函数。 让我们看一个示例, 以了解这些方法如何创建带有标题和颜色的精美饼图。
例子
# Creating data for the graph.x <
- c(20, 65, 15, 50)labels <
- c("India", "America", "Shri Lanka", "Nepal")# Giving the chart file a name.png(file = "title_color.jpg")# Plotting the chart.pie(x, labels, main="Country Pie chart", col=rainbow(length(x)))# Saving the file.dev.off()
输出
文章图片
切片百分比和图表图例 饼图还有两个附加属性, 即切片百分比和图表图例。我们可以用百分比的形式显示数据, 也可以通过使用legend()函数将图例添加到R中的绘图中。 legend()函数具有以下语法。
legend(x, y=NULL, legend, fill, col, bg)
这里,
- x和y是用于定位图例的坐标。
- 图例是图例的文字
- fill是用于填充图例文本旁边的框的颜色。
- col定义图例文本之外的线条和点的颜色。
- bg是图例框的背景色。
# Creating data for the graph.x <
- c(20, 65, 15, 50)labels <
- c("India", "America", "Shri Lanka", "Nepal")pie_percent<
- round(100*x/sum(x), 1)# Giving the chart file a name.png(file = "per_pie.jpg")# Plotting the chart.pie(x, labels = pie_percent, main = "Country Pie Chart", col = rainbow(length(x)))legend("topright", c("India", "America", "Shri Lanka", "Nepal"), cex = 0.8, fill = rainbow(length(x)))#Saving the file.dev.off()
输出
文章图片
3维饼图 在R中, 我们还可以创建三维饼图。为此, R提供了一个plotrix包, 其pie3D()函数用于创建引人注目的3D饼图。 pie3D()函数的参数与pie()函数相同。让我们看一个示例, 以了解如何借助此功能创建3D饼图。
例子
# Getting the library.library(plotrix)# Creating data for the graph.x <
- c(20, 65, 15, 50, 45)labels <
- c("India", "America", "Shri Lanka", "Nepal", "Bhutan")# Give the chart file a name.png(file = "3d_pie_chart1.jpg")# Plot the chart.pie3D(x, labels = labels, explode = 0.1, main = "Country Pie Chart")# Save the file.dev.off()
输出
文章图片
例子
# Getting the library.library(plotrix)# Creating data for the graph.x <
- c(20, 65, 15, 50, 45)labels <
- c("India", "America", "Shri Lanka", "Nepal", "Bhutan")pie_percent<
- round(100*x/sum(x), 1)# Giving the chart file a name.png(file = "three_D_pie.jpg")# Plotting the chart.pie3D(x, labels = pie_percent, main = "Country Pie Chart", col = rainbow(length(x)))legend("topright", c("India", "America", "Shri Lanka", "Nepal", "Bhutan"), cex = 0.8, fill = rainbow(length(x)))#Saving the file.dev.off()
输出
文章图片
推荐阅读
- 什么是R中的面向对象编程()
- R中的运算符用法详解
- R正态分布示例图解
- R next语句用法图解
- Android Studio学习路程(12)
- apply()方法call()方法的作用和比较
- uni-app基础组件
- CSAPP-datalab
- eclipse搭建安卓(Android)开发环境