Closed andkov closed 11 years ago
what is the proper syntax to subset data in reactive() of the "server.R" currently:
datasetInput <- reactive({ rotation <- switch(input$rotation, "Unrotated" = "none", "Varimax" = "varimax", "Promax" = "promax", "Quartimax" = "quartimax", "Quartimin" = "quartimin", "Crawford-Ferguson"="CF") })
use the input object "input$rotation" in subsetting in the output$ object.
both table and graphs are produced. graphs are rendering rather slow
what is the proper syntax to subset data in reactive() of the "server.R" currently:
datasetInput <- reactive({
rotation <- switch(input$rotation, "Unrotated" = "none", "Varimax" = "varimax", "Promax" = "promax", "Quartimax" = "quartimax", "Quartimin" = "quartimin", "Crawford-Ferguson"="CF") })