在ggplot2生成的图表中显示utf-8字符
使用符号 (u+2265):
我想在图表的 y 轴标签中 。我怎样才能做到这一点?谢谢。
UPDATE 01
我需要在y轴标签中添加>=95
,显示95岁以上的人群,我尝试了表达式(>=95)
code> 但失败,因为它似乎期望 >=
之前的内容。我能做些什么?
I want to use the symbol (u+2265):
in the y-axis label of my chart. How can I do that? Thanks.
UPDATE 01
I need to use add a >=95
in the y-axis label, showing the group of people aged more than 95, I tried expression(>=95)
but fail as it seems to expect something before >=
. What can I do?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
通过在表达式中使用
phantom
,您不会打印任何内容。我在那里加了一个句号,因为 phantom 仍然留有空间,所以我想要一些小东西。By using
phantom
in the expression, you don't get anything printed. I put a period in there becausephantom
still leaves space, so I wanted something small.在 y 轴或标签上?
尝试
?expression
和?plotmath
。In the y-axis or label?
Try
?expression
and?plotmath
.