Loading dashboard/server.R +18 −18 Original line number Diff line number Diff line Loading @@ -279,7 +279,7 @@ server <- function(input, output, session) { selectInput(xplotname, "x-axis", choices=colnames(coconut.df)), selectInput(yplotname, "y-axis", choices=colnames(coconut.df)), print(plotname), plotOutput(plotname, height = 250)) ) Loading @@ -289,23 +289,23 @@ server <- function(input, output, session) { #DASHBOARD #BAR VIEW local({ output[[plotname]] <- renderPlot({ print(plotname) data<- structure(list(V1=as.numeric(coconut.df[[input$xplotname]]), V2=as.numeric(coconut.df[[input$yplotname]])), .Names=c("V1","V2"), row.names=c(NA,6L), class = "data.frame") #Neues Plot barplot(data$V1,data$V2, ylab= input$yplotname, xlab=input$xplotname) }) }) #local({ # # output[[plotname]] <- renderPlot({ # print(plotname) # # data<- structure(list(V1=as.numeric(coconut.df[[input$xplotname]]), # V2=as.numeric(coconut.df[[input$yplotname]])), # .Names=c("V1","V2"), row.names=c(NA,6L), class = "data.frame") # #Neues Plot # barplot(data$V1,data$V2, # ylab= input$yplotname, # xlab=input$xplotname) # # }) #}) ## ALTES PLOT #a=1 Loading Loading
dashboard/server.R +18 −18 Original line number Diff line number Diff line Loading @@ -279,7 +279,7 @@ server <- function(input, output, session) { selectInput(xplotname, "x-axis", choices=colnames(coconut.df)), selectInput(yplotname, "y-axis", choices=colnames(coconut.df)), print(plotname), plotOutput(plotname, height = 250)) ) Loading @@ -289,23 +289,23 @@ server <- function(input, output, session) { #DASHBOARD #BAR VIEW local({ output[[plotname]] <- renderPlot({ print(plotname) data<- structure(list(V1=as.numeric(coconut.df[[input$xplotname]]), V2=as.numeric(coconut.df[[input$yplotname]])), .Names=c("V1","V2"), row.names=c(NA,6L), class = "data.frame") #Neues Plot barplot(data$V1,data$V2, ylab= input$yplotname, xlab=input$xplotname) }) }) #local({ # # output[[plotname]] <- renderPlot({ # print(plotname) # # data<- structure(list(V1=as.numeric(coconut.df[[input$xplotname]]), # V2=as.numeric(coconut.df[[input$yplotname]])), # .Names=c("V1","V2"), row.names=c(NA,6L), class = "data.frame") # #Neues Plot # barplot(data$V1,data$V2, # ylab= input$yplotname, # xlab=input$xplotname) # # }) #}) ## ALTES PLOT #a=1 Loading