R 简明教程
R - Line Graphs
折线图是一种通过在点之间绘制线段来连接一系列点的图形。这些点按其一个坐标值(通常是 x 坐标)排序。折线图通常用于识别数据中的趋势。
R 中的 plot() 函数用于创建折线图。
Syntax
在 R 中创建折线图的基本语法为:
plot(v,type,col,xlab,ylab)
以下是所用参数的描述 -
-
v 是包含数值的向量。
-
type 取值“p”表示仅绘制点,“l”表示仅绘制线,“o”表示同时绘制点和线。
-
xlab 是 x 轴的标签。
-
ylab 是 y 轴的标签。
-
main 是图表标题。
-
col 用于给点和线赋予颜色。
Example
使用输入向量和类型参数“O”创建简单的折线图。以下脚本将在当前 R 工作目录中创建和保存折线图。
# Create the data for the chart.
v <- c(7,12,28,3,41)
# Give the chart file a name.
png(file = "line_chart.jpg")
# Plot the bar chart.
plot(v,type = "o")
# Save the file.
dev.off()
当我们执行上述代码时,会产生以下结果 -
Multiple Lines in a Line Chart
可以在同一张图表上绘制多条线,方法是使用 lines() 函数。
在绘制完第一条线后,lines() 函数可以使用一个额外的向量作为输入,在图表中绘制第二条线。
# Create the data for the chart.
v <- c(7,12,28,3,41)
t <- c(14,7,6,19,3)
# Give the chart file a name.
png(file = "line_chart_2_lines.jpg")
# Plot the bar chart.
plot(v,type = "o",col = "red", xlab = "Month", ylab = "Rain fall",
main = "Rain fall chart")
lines(t, type = "o", col = "blue")
# Save the file.
dev.off()
当我们执行上述代码时,会产生以下结果 -