Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

R 绘图


绘图

使用 plot() 函数在图表中绘制点(标记)。

该函数接受用于指定图表中点的参数。

参数 1 指定 **x 轴** 上的点。

参数 2 指定 **y 轴** 上的点。

最简单的用法是,您可以使用 plot() 函数将两个数字相互绘制。

示例

在图表中绘制一个点,位于位置 (1) 和位置 (3)

plot(1, 3)

结果

自己尝试 »

要绘制更多点,请使用 向量

示例

在图表中绘制两个点,一个位于位置 (1, 3),另一个位于位置 (8, 10)

plot(c(1, 8), c(3, 10))

结果

自己尝试 »


多个点

您可以绘制任意多个点,只需确保两个轴上的点数相同。

示例

plot(c(1, 2, 3, 4, 5), c(3, 7, 8, 9, 12))

结果

自己尝试 »

为了更好地组织,当您有许多值时,最好使用变量。

示例

x <- c(1, 2, 3, 4, 5)
y <- c(3, 7, 8, 9, 12)

plot(x, y)

结果

自己尝试 »

点的序列

如果要在 **x 轴** 和 **y 轴** 上按顺序绘制点,请使用 : 运算符。

示例

plot(1:10)

结果

自己尝试 »

绘制线条

plot() 函数还接受一个 type 参数,其值为 l,用于绘制连接图表中所有点的线条。

示例

plot(1:10, type="l")

结果

自己尝试 »

绘图标签

如果您想使用主标题和不同的 x 轴和 y 轴标签来自定义图形,则 plot() 函数还可以接受其他参数,例如 mainxlabylab

示例

plot(1:10, main="我的图表", xlab="x 轴", ylab="y 轴")

结果

自己尝试 »

图形外观

您可以使用许多其他参数来更改点的外观。

颜色

使用 col="颜色" 为点添加颜色。

示例

plot(1:10, col="red")

结果

自己尝试 »

大小

使用 cex=数字 更改点的大小(1 为默认值,0.5 表示缩小 50%,2 表示放大 100%)。

示例

plot(1:10, cex=2)

结果

自己尝试 »

点形状

使用 pch 和 0 到 25 之间的值更改点形状格式。

示例

plot(1:10, pch=25, cex=2)

结果

自己尝试 »

pch 参数的值范围为 0 到 25,这意味着我们可以选择多达 26 种不同的点形状类型。



×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
[email protected]

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
[email protected]

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning. Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness of all content. While using W3Schools, you agree to have read and accepted our terms of use, cookie and privacy policy.

Copyright 1999-2024 by Refsnes Data. All Rights Reserved. W3Schools is Powered by W3.CSS.