Я устанавливаю блестящий сервер на centos 7 и запускаю пример проекта, и он выглядит нормально
, но когда я пытаюсь развернуть проект R (который имеет функции dashboard), я вижу ниже ошибку в лог-файлах блестящего сервера:
su: ignore --preserve-environment, it's mutually exclusive to --login.
Listening on http://127.0.0.1:41240
Warning: Error in dashboardBody: could not find function "dashboardBody"
[No stack trace available]
Я устанавливаю Rstudio и пытаюсь запустить приложение в нем.все кажется нормальным, но на блестящем сервере я не могу его развернуть.
ui.R
body <- dashboardBody(tags$head(
tags$link(rel = "stylesheet", type = "text/css", href = "style.css")
),
fluidRow(
gradientBox(
title = "test",
boxToolSize = "sm",
collapsible = FALSE,
footer = (tagList(
br(),
numericInput(
"threshhold",
"test",
width = 150,
min = 0.001 ,
value = 0.9,
max = 1,
step = 0.01
),
actionButton(inputId = "run", label = "test"),
actionButton(inputId = "reset", label = "test"),
plotlyOutput("fraude_value")
))
),
gradientBox(
title = "test",
boxToolSize = "sm",
collapsible = FALSE,
footer = (tagList(
br(),
DT::dataTableOutput(outputId = "transaction_info")
))
)
),fluidRow(
gradientBox(
title = "test",
boxToolSize = "sm",
collapsible = FALSE,
footer = (tagList(
br(),
DT::dataTableOutput(outputId = "fraud_info")
)),
width = 12
)
))
# ,
# footer = p(textOutput("currentTime", container = span)))
ui <- dashboardPage(
skin = "purple",
dashboardHeader(title = "test"),
dashboardSidebar(collapsed = TRUE,
disable = TRUE),
body
)