Projektarbeit Assistenzsysteme in R
Go to file
2021-12-06 11:07:20 +01:00
lecture Initial setup with lecture example 2021-12-06 10:56:58 +01:00
README.md Added R tips to the README.md 2021-12-06 11:07:20 +01:00

assistenz-r

Projektarbeit Assistenzsysteme in R

R commands

Install new Packages

First you need to open the R console with root privileges.

sudo -i R

Then you can install new packages.

install.packages("<packagename>")

If an error occured, that a system package was not found, it may has to be installed via apt in the bash console, e.g. for libssl-dev:

sudo apt-get install libssl-dev

Run the shiny server

The server can be started with the following command in the bash console:

Rscript <appname.r>

After starting the server, a message with ip and a random port is printed into the console.

Listening on http://127.0.0.1:6056

To open the website when started in vs-code-server, you have to use the built in subfolder-proxy:

https://code.domain.tld/proxy/<PORT>/

IMPORTANT: Don't forget the last '/', otherwise no ressources can be loaded by the website!