旋转基础 R 图的轴标签
在本文中,我们将使用 R 编程语言旋转绘图的轴标签。
为此,用户只需要调用基本函数plot 并使用该函数的las参数和特定的值,这将导致根据传入的 las 参数值旋转图的标签R 编程语言。
根据旋转角度的 las 参数值:
绘图函数:这是用于绘制 R 对象的通用函数
Syntax: plot(x, y,las …)
Parameters:
- x: the x coordinates of points in the plot
- y: the y coordinates of points in the plot
- las – A numeric value indicating the orientation of the tick mark labels and any other text added to a plot after its initialization
水平旋转轴标签
在此示例中,我们将使用 plot函数将 10 个数据点的基本 R 绘图的轴标签旋转到水平位置,其中 las 参数在 R 编程语言中的值为 1。
R
x = c(2, 7, 9, 1, 4, 3, 5, 6, 8, 10)
y = c(10, 3, 8, 5, 6, 1, 2, 4, 9, 7)
plot(x, y, las=1)
R
x = c(2, 7, 9, 1, 4, 3, 5, 6, 8, 10)
y = c(10, 3, 8, 5, 6, 1, 2, 4, 9, 7)
plot(x, y, las=2)
R
x = c(2, 7, 9, 1, 4, 3, 5, 6, 8, 10)
y = c(10, 3, 8, 5, 6, 1, 2, 4, 9, 7)
plot(x, y, las=3)
输出:
旋转与轴垂直的轴标签
在这个例子中,我们将使用 plot函数将 10 个数据点的基本 R 绘图的轴标签旋转到垂直位置,其中 las 参数在 R 中的值为 2编程语言。
电阻
x = c(2, 7, 9, 1, 4, 3, 5, 6, 8, 10)
y = c(10, 3, 8, 5, 6, 1, 2, 4, 9, 7)
plot(x, y, las=2)
输出:
垂直于轴旋转轴标签
在这个例子中,我们将使用 plot函数将 10 个数据点的基本 R 绘图的轴标签旋转到垂直位置,其中 las 参数在 R 中的值为 3编程语言。
电阻
x = c(2, 7, 9, 1, 4, 3, 5, 6, 8, 10)
y = c(10, 3, 8, 5, 6, 1, 2, 4, 9, 7)
plot(x, y, las=3)
输出: