【发布时间】:2021-03-21 21:21:37
【问题描述】:
我希望我的字符向量上同时有下标和上标,相对于绘图上的 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