R and Python in one Jupyter notebook

前端 未结 5 720
春和景丽
春和景丽 2020-12-02 04:59

Is it possible to run R and Python code in the same Jupyter notebook. What are all the alternatives available?

  1. Install r-essentials and create R notebooks in J
5条回答
  •  情话喂你
    2020-12-02 05:57

    I would not recommend to use two languages in a single Notebook. Instead, you can orchestrate R and Python code in project level by connecting them on input\output file base. Data science tools like DVC can help you in order to do that.

    You might find some code examples in this blog post: Best practices of orchestrating Python and R code in ML projects

提交回复
热议问题