首页 > 解决方案 > 字符向量上的下标和上标

问题描述

我希望我的字符向量上同时有下标和上标,相对于绘图上的 X 和 Y 值。

例如,X 值是上标,Y 值是下标。

这是它应该是什么样子的示例: 在此处输入图像描述

我已经尝试粘贴上标然后绘制这些,虽然它没有像预期的那样工作

情节代码:

ggplot(test, aes(x=Neutron, y = Protons, group = Isotopes)) + geom_point() +geom_line() +geom_label(label = test$Isotopes) + scale_x_continuous(breaks = test$Neutron) + scale_y_continuous(breaks = test$Protons)
> ggplot(test, aes(x=Neutron, y = Protons)) + geom_point() +geom_line() +geom_label(label = test$Isotopes) + scale_x_continuous(breaks = test$Neutron) + scale_y_continuous(breaks = test$Protons)

可重现的代码:

structure(list(Neutron = c(237, 233, 233, 229, 225, 225, 221, 
217, 213, 213, 209, 209, 205), Protons = c(93, 91, 92, 90, 88, 
89, 87, 85, 83, 84, 82, 83, 81), Isotopes = c("Np", "Pa", "U", 
"Th", "Ra", "Ac", "Fr", "At", "Bi", "Po", "Pb", "Bi", "Tl")), class = "data.frame", row.names = c(NA, 
-13L))

标签: r

解决方案


我们可以使用sprintforpaste创建标签,然后指定labelinaesparseit ingeom_label

library(ggplot2)
lbl1 <- with(test, sprintf('%s[%d]^%d', Isotopes, Protons, Neutron))
ggplot(test, aes(x=Neutron, y = Protons, label = lbl1)) +
        geom_point() +
        geom_line() +
        geom_label(parse= TRUE) +
        scale_x_continuous(breaks = test$Neutron) + 
         scale_y_continuous(breaks = test$Protons)

-输出

在此处输入图像描述


推荐阅读