在ggplot2生成的图表中显示utf-8字符

发布于 2024-12-06 03:53:41 字数 285 浏览 0 评论 0原文

使用符号 (u+2265):

在此处输入图像描述

我想在图表的 y 轴标签中 。我怎样才能做到这一点?谢谢。

UPDATE 01

我需要在y轴标签中添加>=95,显示95岁以上的人群,我尝试了表达式(>=95) code> 但失败,因为它似乎期望 >= 之前的内容。我能做些什么?

I want to use the symbol (u+2265):

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

绝不放开 2024-12-13 03:53:42
qplot(1, 1, ylab=expression(phantom(.) >= 95))

通过在表达式中使用phantom,您不会打印任何内容。我在那里加了一个句号,因为 phantom 仍然留有空间,所以我想要一些小东西。

qplot(1, 1, ylab=expression(phantom(.) >= 95))

By using phantom in the expression, you don't get anything printed. I put a period in there because phantom still leaves space, so I wanted something small.

匿名。 2024-12-13 03:53:42

在 y 轴或标签上?

plot(1,1, ylab = expression(X >= 5))

尝试 ?expression?plotmath

In the y-axis or label?

plot(1,1, ylab = expression(X >= 5))

Try ?expression and ?plotmath.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文