Updated: 2018/12/10
In [1]:
%load_ext ferretmagic
In [2]:
%%ferret -s 600,500
cancel mode logo
set text/font=arial
let a = {7,12,28,3,41}
plot/symbol=30/line/title="title" a
In [3]:
%load_ext rpy2.ipython
In [4]:
%%R
v <- c(7,12,28,3,41)
plot(v,type = "o")
In [ ]:
In [ ]: