RStudio是最好用的IDE, 没有之一. 我最喜欢RStudio的几点:
新版本亮点:
这里, 我输入num
, 按键tab, 然后出现候选的numpy
,
可以看出, 逻辑和RStudio一致, 有编码区, 有显示区, 有图片显示区.
测试代码:
# test python in rstudio
import numpy as np
import matplotlib.pyplot as plt
### 创建x和y
x = np.arange(-2, 2, 0.01)
y = np.sin(x)
### 对x和y作图
plt.plot(x, y, color="r", linestyle="-", linewidth=1)
plt.show()
坑1
新版本的Rstudio, 需要R包:reticulate
在1.10以上, 如果是1.09会报错, 而如果你的R是microsoftR
是老版本的话, CRAN不是默认的镜像, 安装不成1.10版本.
解决方法:
使用github安装:
library(devtools)
install_github("rstudio/reticulate")