Questions tagged [rstudio-server]

This tag is to be used for rstudio-server, which provides a browser based interface for R / Rstudio running on a remote server. Note that this is different from accessing the Rstudio IDE directly via remote access.

591 questions
0
votes
1 answer

Not able to install packages on RStudio Server

I am using RStudio Server and trying to install basic packages and getting the below error - g++ -I/usr/lib64/microsoft-r/3.3/lib64/R/include -DNDEBUG - I../inst/include/ -DU_STATIC_IMPLEMENTATION -fpic - DU_STATIC_IMPLEMENTATIN -O2 -g -c…
srivakin
  • 1
  • 3
0
votes
1 answer

How to put if-else condition inside Shiny action button code?

The software that I am developing is a 'Sample Selection Software' which using RStudio. The software will behave like this. User uploads Excel document. Then, the user will click 'Submit" button. After that, the software will automatically select…
Shasha
  • 7
  • 2
0
votes
2 answers

How to group a quantitative variable by a categorical variable in R (to make a histogram)

I'm trying to get means for a quantitative variable, then plot means for this quant variable BY day of week (categorical) Have tried reorganizing data and such, but to now avail. Very simple but has me stumped. Thanks!
Jason Bu
  • 11
  • 2
0
votes
1 answer

RStudio server suddenly not accessible anymore on AWS

I'm using AWS to host a server running RStudio Server on it. Last week, everything was running fine when I installed all software and opened port 8787, but when I tried to access it again this week, I can't access it anymore. I restarted the server,…
Dendrobates
  • 3,294
  • 6
  • 37
  • 56
0
votes
0 answers

Having issues with RHADOOP?

I have checked the question : Rhadoop - wordcount using rmr and have tried the answer on my side. But it is giving a lot of issues. Here is the code: …
Jaffer Wilson
  • 7,029
  • 10
  • 62
  • 139
0
votes
1 answer

How to connect to Firebird using ODBC on Ubuntu

I want to import some data from a non-local database to RStudio. I've searched and I found that I could use RODBC library at RStudio, like: channel <- odbcDriverConnect('driver={SQL Server}; server= servername; database=dbname;…
0
votes
1 answer

RStudio Server C-Stack memory allocation setting in rsession.conf

I'm trying to increase C-stack size in rstudio server 0.99 on CentOS6 editing /etc/rstudio/rserver.conf file as follow: rsession-stack-limit-mb=20 But "rstudio-server verify-installation" returns this message: The option 'rsession-stack-limit-mb' is…
0
votes
1 answer

How to copy files to each user's space in docker

I am writing a docker file to conduct an evaluation of an R package that I have written. The package is installed inside RStudio server. My docker file inherits from FROM rocker/rstudio. I want the docker file to install the everything (which it…
javadch
  • 177
  • 2
  • 6
0
votes
1 answer

Access denied when writing to file in RStudio Server

In RStudio Server I want to write to the directory /var/www/r_diagnostics: f <- "/var/www/r_diagnostics/test.txt" writeLines("test", con = f) The name of my user is randomuser. > system("whoami") randomuser The directory permissions for…
Mark Heckmann
  • 10,943
  • 4
  • 56
  • 88
0
votes
2 answers

box_auth() without localhost

I'm trying to use the boxr package to link my box account to R-Server. I get as far in the box_auth() instructions as step 3 from the box pdf https://cran.r-project.org/web/packages/boxr/boxr.pdf A window pops up and I authorise connection then I…
0
votes
0 answers

How come I get different R versions at the same time within RStudio Server?

So, I upgraded my old RStudio Server installation on my EC2 at Amazon. First step was upgrading RStudio Server. No issues. Second step was upgrading the R itself. I upgraded the machines R installation to 3.3.2. EDIT (inserted after comment): I…
maze
  • 335
  • 4
  • 9
0
votes
1 answer

accessing to R studio server in local network

I am beginner with R studio server. I installed it on a machine in the local network of my university. The machine has then a local ip address: 192.168.x.x . I can access to R through web browser in the university (local net). My question is: How…
opencver
  • 1
  • 2
0
votes
1 answer

Using Microsoft R Server packages (e.g., RevoScaleR) with RStudio Server

I am using Microsoft R Server (MRS 8.0.5) on a Hadoop cluster. MRS packages (RevoScaleR, RevoPemaR) work well at the command line, but I can't use them with RStudio Server. It seems these packages are not available for Rstudio server. Other packages…
Siwen
  • 1
0
votes
1 answer

How to access RStudio-server remotely?

I've installed Rstudio-server in Hortonworks sandbox (Azure). I'm sure that rserver is running properly, I verified it by running '$ sudo rstudio-server status'. But, When I tried to access RStudio through the URL:IP-Add:8787, nothing is loading.
0
votes
2 answers

How to connect remote Spark cluster from Local Windows Rstudio

I have Spark cluster in my remote centos nodes and i want to connect that remote Spark cluster from my local windows R studio (I am using Rstudio Desktop in my local windows) if (nchar(Sys.getenv("SPARK_HOME")) < 1) { Sys.setenv(SPARK_HOME =…