如何使用 CSV 文件在 R 中绘制图形?
要使用 CSV 文件在 R 中绘制图形,我们需要一个具有两列的 CSV 文件,第一列中的值将被视为 x 轴上的点,第二列中的值将被视为y 轴上的点。在本文中,我们将研究使用 R 语言的 CSV 文件绘制图形的方法。
方法
- 导入 .csv 文件
- 将所需参数传递给绘图函数
- 绘制图形
- 显示图
使用的功能:
- 要将 CSV 文件导入/读取到 R 控制台,用户必须使用 R 中的 read.csv()函数。此函数将读取当前工作目录中可用的 CSV 文件。
句法:
read.csv(file)
- 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.
例子:
R
data=read.csv('input_gfg.csv')
print(data)
plot(x = data$x,y = data$y,
xlab = "x-axis",
ylab = "y-axis",
main = "Plot"
)
输出: