Using GNU R sessions inside TeXmacs |
GNU
http://www.r-project.org
In order to launch an
To put the current graph in the TeXmacs buffer as an eps use v().
The functions plotv(), linesv(), and pointsv() are provided as a convenience.
They do the regular function, and then insert the graph.
> |
qnorm(1/2,mean=0,sd=1)
|
> |
x<-1:100
|
> |
y<-rnorm(x)
|
> |
plot(x,y)
|
> |
v()
|
> |
plot(x)
|
> |
v()
|
> |
z<-sort(y)
|
> |
plot(z)
|
> |
v()
|
> |
plot(z,sort(y))
|
> |
v()
|
> |
hist(z)
|
> |
v()
|
> |
summary(z)
|
> |
hist(y,seq(-4,3.5,0.2),prob=TRUE)
|
> |
v()
|
> |
|