我试图在python 2.7内核笔记本上嵌入一些代码,但它不起作用。
我正在使用Anaconda的Jupyter,所以我尝试过:
getBudaFiat(baseCurrency: string, targetCurrency: string) {
return Observable.interval(60000)
.startWith(0)
.switchMap(() => {
return this.http.get(`https://wt-e2369b36b992e69ccc8f05d9b48dd8e2-0.sandbox.auth0-extend.com/cryptoalarma/${baseCurrency}${targetCurrency}`)
.map((response: Response) => response);
});
}
或
conda install rpy2
不幸的是,无论何时我尝试使用%% R或%R都没有任何事情发生,除了错误消息表明没有%R魔法。
事实上,当我尝试:
conda install rpy2.ipython
除了R之外,还出现了一大堆魔法。
答案 0 :(得分:1)
找到解决方案!
rpy2包已移至rpy2.ipython
因此,要使用%% R,您必须先调用
%load_ext rpy2.ipython
而不是
%load_ext rmagic
答案 1 :(得分:0)
假设安装了R,请在使用前确保load the magic:
%load_ext rmagic