У меня есть еще одна проблема с моим Aplication. Мне нужно добавить функцию гистограммы к ней.(Shiny, R) Создание гистограммы из CSV-файла (с возможностью выбора колонки через поле со списком/Выбор входа.
На третьем приложении закладке следует создать гистограмма из загруженного файла (столбец выбирается через поле со списком/selectinput)
Приложение может фактически создать выпадающий с колоннами из CSV файла
Но когда я хочу сделать гистограмму, на вкладке «гистограмма отображает только сообщение об ошибке:..
ERROR: object of type 'closure' is not subsettable
Я не знаю, что я сделал неправильно.
Существует код
ui <- shinyUI(fluidPage(
titlePanel("Aplikacja testowa nr 6. Praca z plikiem- wybór kolumny"),
sidebarLayout(
sidebarPanel(
fileInput("file", label = h3("Wgraj Plik")),
checkboxInput(inputId = 'header', label = 'Pierwszy wers to etykiety', value = FALSE),
radioButtons(inputId = 'sep', label = 'Co jest separatorem', choices = c("Przecinek"=',',"Średnik"=';',"Tabulator"='\t', "Spacja"=''), selected = ','),
checkboxGroupInput("choices1", label = h3("Wybierz Kolumny"), choices = NULL),
# there is combobox to pick column
selectInput("combobox", label = h3("(Histogram) Wybierz kolumne"), choices = NULL)
),
mainPanel(
uiOutput("tb")
)
)
))
server <- function(input, output, session){
data <- reactive({
file1 <- input$file
if(is.null(file1)){return()}
dataSet <- read.csv(file=file1$datapath, sep=input$sep, header = input$header)
updateCheckboxGroupInput(session, "choices1", choices = colnames(dataSet))
# this line updates selection in combobox
updateSelectInput(session, "combobox", choices = colnames(dataSet))
dataSet
})
output$table <- renderTable({
if(is.null(data())){return()}
data()
})
output$table2 <- renderTable({
if(is.null(data()) || is.null(input$choices1)){return()}
data()[input$choices1]
})
# there is part of file where i make histogram
output$wykres <- renderPlot({
x <- data[0, input$combobox]
hist(x , col = 'blue', border = 'white')
})
output$tb <- renderUI({
if(is.null(data()))
h5("Wgraj Plik jeśli chcesz cokolwiek zrobić.")
else
tabsetPanel(tabPanel("dane", tableOutput("table")),tabPanel("wybrane kolumny", tableOutput("table2")), tabPanel("Histogram", plotOutput("wykres")))
})
}
shinyApp(ui, server)
Внутри кода 'hist' вы забыли поставить круглые скобки после' data'. Должно быть 'x <- data() [0, .......' –
О ... Извините - я не видел вашего комментария, прежде чем ответить на вопрос :(Кстати, 't равно 0. –