R built in Web server

前端 未结 3 1473
广开言路
广开言路 2021-02-14 18:37

Since R 2.13, R comes with a built-in web server. Is there a simple way to create a local web server using R with a custom port number?

In python it will be (to use \"

3条回答
  •  走了就别回头了
    2021-02-14 19:19

    This is not an answer, but some places to get started.

    If we run R from terminal (by typing R), then run help.start(), it will start a local host and open it in the browser. On mine, it opens http://127.0.0.1:16371/doc/html/index.html. This at least proves that it's possible to open a localhost in R without any external packages.

    I have found some of the code that makes this happen in the R Source Code.

提交回复
热议问题