图片标题无法正确呈现
image titles do not render properly
我正在尝试 运行 闪亮应用示例(我添加了 options(encoding = 'UTF-8')
):
options(encoding = 'UTF-8')
library(shiny)
# Define UI for application that draws a histogram
ui <- fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
)
# Define server logic required to draw a histogram
server <- function(input, output) {
output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
}
# Run the application
shinyApp(ui = ui, server = server)
并且图像没有对名称(标题)进行编码。
更新
我尝试在 R 脚本中使用 par(family ="Ubuntu Mono")
,它起作用了。但是,它在闪亮的应用程序中不起作用(在渲染图中尝试过)。
这看起来像 font conflict。
您可以通过在您的系统上设置可以正确呈现的自定义字体来规避它。
对于基本图形,使用 par(family = "serif")
或
renderPlot(..., family = "serif")
在闪亮。
对于 ggplot2
个图形,设置 theme(text = element_text(family = "serif"))
对于单个情节,或在支持的主题中使用 base_family
,例如
theme_gray(base_family = "serif")
.
将以上所有内容替换为"serif"
使用您要使用的字体。比如你特别提到
"Ubuntu Mono"
在您的情况下正确呈现。
我正在尝试 运行 闪亮应用示例(我添加了 options(encoding = 'UTF-8')
):
options(encoding = 'UTF-8')
library(shiny)
# Define UI for application that draws a histogram
ui <- fluidPage(
# Application title
titlePanel("Old Faithful Geyser Data"),
# Sidebar with a slider input for number of bins
sidebarLayout(
sidebarPanel(
sliderInput("bins",
"Number of bins:",
min = 1,
max = 50,
value = 30)
),
# Show a plot of the generated distribution
mainPanel(
plotOutput("distPlot")
)
)
)
# Define server logic required to draw a histogram
server <- function(input, output) {
output$distPlot <- renderPlot({
# generate bins based on input$bins from ui.R
x <- faithful[, 2]
bins <- seq(min(x), max(x), length.out = input$bins + 1)
# draw the histogram with the specified number of bins
hist(x, breaks = bins, col = 'darkgray', border = 'white')
})
}
# Run the application
shinyApp(ui = ui, server = server)
并且图像没有对名称(标题)进行编码。
更新
我尝试在 R 脚本中使用 par(family ="Ubuntu Mono")
,它起作用了。但是,它在闪亮的应用程序中不起作用(在渲染图中尝试过)。
这看起来像 font conflict。 您可以通过在您的系统上设置可以正确呈现的自定义字体来规避它。
对于基本图形,使用 par(family = "serif")
或
renderPlot(..., family = "serif")
在闪亮。
对于 ggplot2
个图形,设置 theme(text = element_text(family = "serif"))
对于单个情节,或在支持的主题中使用 base_family
,例如
theme_gray(base_family = "serif")
.
将以上所有内容替换为"serif"
使用您要使用的字体。比如你特别提到
"Ubuntu Mono"
在您的情况下正确呈现。