Answer the question
In order to leave comments, you need to log in
Why is renderText not displaying Cyrillic correctly?
OS X
Sample code:
library(shiny)
server <- function(input, output, session) {
output$habr <- renderText({
"Хабрахабр"
})
} #the server
ui <- basicPage(fluidPage(
textOutput("habr")
)) # the user interface
shinyApp(ui = ui, server = server) # this launches your app
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question