如何在R中绘制excel数据?
使用excel文件在R中绘制图形,我们需要一个包含两列的excel文件,第一列中的值将被视为x轴上的点,第二列中的值将被视为y 轴上的点。在本文中,我们将讨论使用 R 语言的 excel 文件绘制图形的方法。
要将 excel 文件导入并读取到 R 控制台,将使用 R 中 readxl 库中的 read_excel()函数。此函数将读取当前工作目录中可用的 excel 文件。要在 R 中安装 readxl 库的包,用户必须在 R 控制台中遵循以下语法。
句法:
install.packages(“readxl”)
使用中的数据:
plot()函数用于绘制 R 对象。使用提供的参数,此函数默认返回散点图。
Syntax:
plot(x,y,main,xlab,ylab,sub,asp)
Parameters:
- x:-the x coordinates of points in the plot
- y:-the y coordinates of points in the plot
- main:-an overall title for the plot
- sub:-a subtitle for the plot
- xlab:-a title for the x-axis
- ylab:-a title for the y-axis
- asp:-the y/x aspect ratio
Return:
Scatter plot of the given x and y values.
方法
- 导入库
- 导入excel文件
- 读取其数据
- 绘制图形
- 显示图
例子:
R
library(readxl)
Data_gfg <- read_excel("Data_gfg.xlsx")
plot(x = Data_gfg$x,y = Data_gfg$y,
xlab = "x-axis",
ylab = "y-axis",
main = "Plot"
)
输出: