Pergunta

As mentioned in question is there something like iPython's notebook (jupyter) for R-CRAN?

Foi útil?

Solução

Have a look at Ramnath's R notebook:

http://www.youtube.com/embed/3niqZhc_Nbo

And here's the GitHub: https://github.com/ramnathv/rNotebook

EDIT (1/6/15)

I think the new editR package is what you're after

https://github.com/swarm-lab/editR

Outras dicas

Not sure it would be an exact equivalent of iPython's notebooks, but you can use knitr to make literacy programming in R, by inserting code chunks inside a document. If you use a format like RMarkdown, you can export the document and the result of the code chunks to HTML. You can then publish the HTML file somewhere, or use sites like Rpubs. This process is quite straightforward if you use the RStudio IDE.

Another way, if you are an Emacs user, is to use org-mode and its extension org-babel.

Finally, you should be able to create more dynamic things with a framework like shiny. See for example the following knitr demo from the shiny library :

R> library(shiny)
R> demo("notebook", package = "knitr")

Would this be what you are looking for? http://www.rstudio.com/ide/

Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top