当x轴为希伯来语时,我试图在R
ggplot中显示shiny。
我的代码:
#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'))
)
))
x轴上的字母顺序错误。
shiny
以外的同一地块可以正常工作。
有什么办法解决吗?
谢谢