简体   繁体   中英

Summarising Character and Numeric Columns for Shiny SelectInput

Below is the structure of the dataframe

Village <- c("Location A" , "Location B", "Location C", "Location C", "Location A")
Farmers_Name <- c("Mary", "John", "Grace","Steph", "Richard")
Practiced_MinimumTillage <- c(0,1,1,0,1)
Practiced_Intercropping <- c(1,1,1,0,0)
Practiced_CropRotation <- c(1,1,1,1,0)
Practiced_ApplicationOfManure <- c(0,1,0,1,0)
farmers <- data.frame(Farmers_Name,Village,Practiced_MinimumTillage,Practiced_Intercropping,Practiced_CropRotation,Practiced_ApplicationOfManure)

The output of the dataframe farmers.

 Farmers_Name    Village Practiced_MinimumTillage Practiced_Intercropping Practiced_CropRotation Practiced_ApplicationOfManure
1         Mary Location A                        0                       1                      1                             0
2         John Location B                        1                       1                      1                             1
3        Grace Location C                        1                       1                      1                             0
4        Steph Location C                        0                       0                      1                             1
5      Richard Location A                        1                       0                      0                             0

Summarizing farm practices to get an understanding of the usage. A frequency table of the practices used by farmers in their farm.

 practices <-  select(farmers,Practiced_MinimumTillage,Practiced_Intercropping,Practiced_CropRotation,Practiced_ApplicationOfManure)
practices %>%
  summarise_all(sum, na.rm=TRUE) %>%
  gather(var,value) %>%
  arrange(desc(value)) %>%
  ggplot(aes(var, value)) + geom_bar(stat = "Identity") + coord_flip()

In the farmers dataframe, I'd like to use the column Village, for selectInput function. Whereby if a person selects "Location A" or "Location B" from the dropdown, above plot based on the frequency table is rendered in the output. How do I restructure the dataframe to suit this using either dplyr or data.table ?

It's pretty straightforward but comment if you have any questions -

Village <- c("Location A" , "Location B", "Location C", "Location C", "Location A")
Farmers_Name <- c("Mary", "John", "Grace","Steph", "Richard")
Practiced_MinimumTillage <- c(0,1,1,0,1)
Practiced_Intercropping <- c(1,1,1,0,0)
Practiced_CropRotation <- c(1,1,1,1,0)
Practiced_ApplicationOfManure <- c(0,1,0,1,0)
farmers <- data.frame(Farmers_Name,Village,Practiced_MinimumTillage,Practiced_Intercropping,
                      Practiced_CropRotation,Practiced_ApplicationOfManure)

shinyApp(
  ui = fluidPage(
    selectInput("village", "Select Village", choices = unique(farmers$Village)),
    plotOutput("some_plot")
  ),
  server = function(input, output, session) {

    output$some_plot <- renderPlot({
      filter(farmers, Village == input$village) %>%
      select(Practiced_MinimumTillage,Practiced_Intercropping,Practiced_CropRotation,
             Practiced_ApplicationOfManure) %>%
      summarise_all(sum, na.rm=TRUE) %>%
      gather(var,value) %>%
      arrange(desc(value)) %>%
      ggplot(aes(var, value)) + geom_bar(stat = "Identity") + coord_flip()
    })
  }
)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM