Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在使用ggplot2和facet_grid,输出格式为 PNG。如何在 x 轴标签中写上符号“Angstroms”?我试过xlab("{\305}")了,但这为我打印了一个奇怪的符号。
facet_grid
xlab("{\305}")
有一个不同解决方案的列表。有些可能不适用于特定任务。
xlab="\u5c" xlab="\u212b" xlab="Å"
在 R 会话中工作(但不适用于 PDF 输出)。
xlab=expression(ring(A) )
适用于 R 会话和 PDF 输出。