带有希伯来语标签的ggplot

时间:2018-12-16 13:25:23

标签: r ggplot2 shiny

当x轴为希伯来语时,我试图在R 中显示。 我的代码:

#server
shinyServer(  
  function(input, output, session) { 
    output$Plot <- renderPlot({
      temp<-data.frame(x=c("ראשון","שני","שלישי"),y=c(1,2,3))
      ggplot(temp, aes(x = x, y = y)) + geom_point() 
    })
  })

#ui
shinyUI(fluidPage(
  sidebarLayout(
    sidebarPanel(), 
    mainPanel("main panel", 
      plotOutput('Plot'))
  )
))

我得到的情节是: enter image description here

x轴上的字母顺序错误。

shiny以外的同一地块可以正常工作。

有什么办法解决吗?

谢谢

0 个答案:

没有答案