当前位置: 首页 > 工具软件 > PyThor > 使用案例 >

python rpy2 setseed_pythor: RPy2 可以在 Python 和 R 之间进行交互,让用户可以在 Python 中轻松的使用 R 的封装包...

仲皓君
2023-12-01

PyThor- Python meets R

Python is fanstastc! So, is R. R contains so many awesome packages that aren't available in Python. Can we get the best of both the worlds? This repository contains recipes for using RPY2 and writing your own wrapper around R packages, so that you can use them conveniently within your Python environment. Read the introductory blog post here.

Here is a sample R code you'd write for fitting a linear model.

fit

predicted

Here is the Python code you'll now have to write with the Pythor recipe in place.

pylm = PYLM()

relationship='eruptions~waiting'

pylm.fit(relationship, faithful_pandas_df)

pylm.predict(faithful_pandas_df.tail(5))

As simple as it gets. Obviously, there are many awesome packages in Python which provide linear fitting methods. But, this was just an illustration.

Current list of R packages interfaced (maybe partially) in PyThor

 类似资料: