search for: fluidrow

Displaying 5 results from an estimated 5 matches for "fluidrow".

Did you mean: fluido
2017 Oct 08
2
load() failed to load .Rdata file in AWS-Ububtu
...Setting LC_CTYPE failed, using "C" > load("/home/ubuntu/Dat.RData") > However it still failing when I try that within my shiny app in AWS. Below are my ui.R and server.R files respectively. 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 ap...
2017 Oct 09
0
load() failed to load .Rdata file in AWS-Ububtu
...d("/home/ubuntu/Dat.RData") > > > > > However it still failing when I try that within my shiny app in AWS. > > Below are my ui.R and server.R files respectively. > > 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.fram...
2017 Oct 09
1
load() failed to load .Rdata file in AWS-Ububtu
...gt;> > >> >> However it still failing when I try that within my shiny app in AWS. >> >> Below are my ui.R and server.R files respectively. >> >> 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, outp...
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