将goplot2中的表情符号绘制为标签

时间:2018-04-03 09:54:24

标签: r ggplot2 emoji

这是我对表情符号的反复。列name包含表情符号和文本。

# # A tibble: 4 x 2
# name   number
# <chr>   <dbl>
#1 .    63150.
#2   1289.
#3 &     1387.
#4     5055.

当我尝试plot时,它看起来像这样:

library(dplyr)
library(ggplot2)
df %>% 
  ggplot(aes(name, number))+
  geom_bar(stat = 'identity')+
  coord_flip()

PLOT

为什么表情符号没有正确绘图?

0 个答案:

没有答案