search for: rendertable

Displaying 8 results from an estimated 8 matches for "rendertable".

Did you mean: renderable
2020 Nov 07
4
Data Table not rendering properly using R shiny
...4 Europe 1895.2000 5 PDO 1053.3500 6 UK 0.0000 Rshiny code: library(shiny) ui <- fluidPage( selectInput("Region","Select Region",max_usage_hours_per_region$Region,selected = TRUE), tableOutput("table") ) server <- function(input, output) { output$table <- renderTable( max_usage_hours_per_region[input$Region,]) } shinyApp(ui = ui, server = server) [[alternative HTML version deleted]]
2020 Nov 07
4
Data Table not rendering properly using R shiny
...4 Europe 1895.2000 5 PDO 1053.3500 6 UK 0.0000 Rshiny code: library(shiny) ui <- fluidPage( selectInput("Region","Select Region",max_usage_hours_per_region$Region,selected = TRUE), tableOutput("table") ) server <- function(input, output) { output$table <- renderTable( max_usage_hours_per_region[input$Region,]) } shinyApp(ui = ui, server = server) [[alternative HTML version deleted]]
2017 Oct 08
2
load() failed to load .Rdata file in AWS-Ububtu
...ely. library(shiny) # Define UI for miles per gallon application fluidPage( fluidRow( column(12, tableOutput('table') ) ) ) server.R : library(shiny) load("/home/ubuntu/Dat.RData") shinyServer(function(input, output) { output$table = renderTable(head(data.frame(1:20, 1:20), 20)) }) with above setup when I deploy my shiny app I get below error : 18.221.184.94:3838 says The application unexpectedly exited Diagnostic information has been dumped to the JavaScript error console. appreciate any help to get rid of this error. Thanks for your...
2020 Nov 07
0
[R] Data Table not rendering properly using R shiny
...(shiny) >> >> ui <- fluidPage( >> selectInput("Region","Select >> Region",max_usage_hours_per_region$Region,selected = TRUE), >> tableOutput("table") >> ) >> server <- function(input, output) { >> output$table <- renderTable( >> max_usage_hours_per_region[input$Region,]) >> } >> shinyApp(ui = ui, server = server) >> >> [[alternative HTML version deleted]] >> >> ______________________________________________ >> R-help at r-project.org mailing list -- To UNSUBSCRIBE and mo...
2017 Oct 09
0
load() failed to load .Rdata file in AWS-Ububtu
...dPage( > fluidRow( > column(12, > tableOutput('table') > ) > ) > ) > > server.R : > > library(shiny) > > load("/home/ubuntu/Dat.RData") > > shinyServer(function(input, output) { > output$table = renderTable(head(data.frame(1:20, 1:20), 20)) > }) > > with above setup when I deploy my shiny app I get below error : > > 18.221.184.94:3838 says > The application unexpectedly exited > Diagnostic information has been dumped to the JavaScript error console. > > appreciate any help t...
2017 Oct 09
1
load() failed to load .Rdata file in AWS-Ububtu
...>> tableOutput('table') >> ) >> ) >> ) >> >> server.R : >> >> library(shiny) >> >> load("/home/ubuntu/Dat.RData") >> >> shinyServer(function(input, output) { >> output$table = renderTable(head(data.frame(1:20, 1:20), 20)) >> }) >> >> with above setup when I deploy my shiny app I get below error : >> >> 18.221.184.94:3838 says >> The application unexpectedly exited >> Diagnostic information has been dumped to the JavaScript error console. &gt...
2017 Oct 07
0
load() failed to load .Rdata file in AWS-Ububtu
Hi Christofer, The directory /srv/shiny-server would normally be owned by the root user. Your options would seem to be to either (1) bring up the R session as root (dangerous) or (2) try copying the file to your local directory and read it from there (if allowed). e.g. from the Unix shell: > cd ~ (i.e. cd to your home directory) > cp /srv/shiny-server/Dat.Rdata . (Note the '.' at
2017 Oct 07
2
load() failed to load .Rdata file in AWS-Ububtu
Hi again, I hope this is the right place to post my question on running R within Ubuntu, however if not, any pointer on right distribution list will be helpful. I am currently using R in Ubuntu which is hosted in Amazon - AWS. I have a .Rdata file in AWS which I am trying to load in R. Used following code, however, fails to load showing some permission issue. However that same .Rdata file is