R 中的 scale_x_discrete 函式

Jinku Hu 2023年1月30日
  1. 使用 scale_x_discrete 反轉 R 圖中 x 軸上的元素順序
  2. 在 R 中使用 scale_x_discretex 軸上顯示元素的子集
  3. 使用 scale_x_discrete 重新命名 R 中 x 軸上的元素標籤
  4. 使用 scale_x_discrete 修改 R 中的 x 軸名稱
R 中的 scale_x_discrete 函式

本文將介紹 R 中的 scale_x_discrete 函式。

使用 scale_x_discrete 反轉 R 圖中 x 軸上的元素順序

scale_x_discrete 用於設定離散 x 軸比例美學的值。在本文中,我們使用 ggplotgeom_boxplot 函式構建多個箱線圖來演示 scale_x_discrete 中不同引數的效果。通常情況下,軸上元素的順序需要顛倒,實現這一點最簡單的方法是將 scale_x_discrete 引數的 limits 引數設定為 rev(levels(dataset_name$X_axis_items))。請注意,資料集名稱首先出現,然後是 $ 符號,然後我們指定需要反轉的 x 軸資料。

library(ggplot2)
library(gridExtra)

p1 <- ggplot(Loblolly, aes(x = Seed, y = height)) +
  geom_boxplot(fill = "cyan")

p2 <- ggplot(Loblolly, aes(x = Seed, y = height)) +
  geom_boxplot(fill = "orange") +
  scale_x_discrete(limits = rev(levels(Loblolly$Seed)))

grid.arrange(p1, p2, ncol = 2, nrow =2)

scale_x_discrete in r 1

在 R 中使用 scale_x_discretex 軸上顯示元素的子集

scale_x_discrete 函式的另一個有用功能是從 x 軸消除一些元素並僅繪製其中的少數元素。在這種情況下,我們使用 PlantGrowth 資料集,其中列出了三類組。因此,我們可以輸出只有 trt2trt1 組的箱線圖,如下面的程式碼片段所示。

library(ggplot2)
library(gridExtra)

p1 <- ggplot(Loblolly, aes(x = Seed, y = height)) +
  geom_boxplot(fill = "cyan")

p2 <- ggplot(Loblolly, aes(x = Seed, y = height)) +
  geom_boxplot(fill = "orange") +
  scale_x_discrete(limits = rev(levels(Loblolly$Seed)))

p3 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "pink")

p4 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "green") +
  scale_x_discrete(limits = c("trt2", "trt1"))

grid.arrange(p1, p2, p3, p4, ncol = 2, nrow =2)

r 2 中的 scale_x_discrete

使用 scale_x_discrete 重新命名 R 中 x 軸上的元素標籤

scale_x_discrete 函式還可用於沿 x 軸重新命名元素標籤。新標籤值可以與分配給 scale_x_discrete 函式中的 labels 引數的向量一起提供。

library(ggplot2)
library(gridExtra)

p1 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "cyan")

p2 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "pink") +
  scale_x_discrete(
    labels = c("Control", "Treatment 1", "Treatment 2")
  )

grid.arrange(p1, p2, ncol = 2, nrow =2)

r 3 中的 scale_x_discrete

使用 scale_x_discrete 修改 R 中的 x 軸名稱

請注意,前面的每個方法都可以組合以輸出所需的圖形結構。例如,以下示例程式碼繪製 p4 以僅顯示元素的子集,並使用提供的值重新命名這些標籤。此外,我們利用 scale_x_discrete 使用 name 引數沿 x 軸修改名稱。

library(ggplot2)
library(gridExtra)

p1 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "cyan")

p2 <- ggplot(PlantGrowth, aes(x = group, y = weight)) +
  geom_boxplot(fill = "pink") +
  scale_x_discrete(
    labels = c("Control", "Treatment 1", "Treatment 2")
  )

p3 <- ggplot(OrchardSprays, aes(x = treatment, y = decrease)) +
  geom_boxplot(fill = "orange")

p4 <- ggplot(OrchardSprays, aes(x = treatment, y = decrease)) +
  geom_boxplot(fill = "green") +
  scale_x_discrete(
    limits = c("A", "B"),
    labels = c("Alice", "Bob"),
    name = "Treatment"
  )

grid.arrange(p1, p2, p3, p4, ncol = 2, nrow =2)

r 4 中的 scale_x_discrete

作者: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

DelftStack.com 創辦人。Jinku 在機器人和汽車行業工作了8多年。他在自動測試、遠端測試及從耐久性測試中創建報告時磨練了自己的程式設計技能。他擁有電氣/ 電子工程背景,但他也擴展了自己的興趣到嵌入式電子、嵌入式程式設計以及前端和後端程式設計。

LinkedIn Facebook

相關文章 - R Plot