Utilizzare le sessioni di GNU R in TeXmacs

GNU R è un insieme integrato di strumenti software per la manipolazione dei dati e la visualizzazione grafica. Molte persone utilizzano R come un sistema statistico. Ma gli sviluppatori preferiscono pensarlo come uno strumento in cui sono stati implementate molte tecniche statistiche classiche e moderne. Si può scaricare R da

    http://www.r-project.org

Per poter lanciare una sessione di R in TeXmacs, si utilizza TestoSessioneR. La funzione v()può essere utilizzata per includere il contenuto delle finestre grafiche di R nel proprio foglio di lavoro.

> Welcome to the TeXmacs interface to R.

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.

To change the size of the graph that is inserted to TeXmacs,just adjust the size of the X11 window.

>

qnorm(1/2,mean=0,sd=1)

[1] 0

>

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)

Min. 1st Qu. Median Mean 3rd Qu. Max.
-2.802000 -1.003000 0.007691 -0.040620 0.840500 2.447000

>

hist(y,seq(-4,3.5,0.2),prob=TRUE)

>

v()

>

Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.1 or any later version published by the Free Software Foundation; with no Invariant Sections, with no Front-Cover Texts, and with no Back-Cover Texts. A copy of the license is included in the section entitled "GNU Free Documentation License".