Sophie

Sophie

distrib > Fedora > 13 > i386 > by-pkgid > 4d085722ae03f441fd2ba3e3f33536e2 > files > 8

emacs-common-ess-5.5-1.fc13.noarch.rpm

\documentclass{article}
\usepackage{noweb}

\begin{document}

For example, plotting 20 pairs of $N(0,1)$ random variates can be
looked at via the two following chunks.

<<Plotting 20 N(0,1) RVs in XLispStat>>=
;; -*- mode: xlispstat -*-
(def test (normal-rand 20))
(def test2 (normal-rand 20))
(plot test test2)
@ 

The below code demonstrates that there isn't much difference between
Lisp and the S language (as implemented through the dialect, R).

<<Plotting 20 N(0,1) RVs in R>>=
## -*- mode: R -*-
test <- rnorm(20)
test2 <- rnorm(20)
plot(test,test2)
@ 

Finally, we could show how to do this in Stata or SAS, as follows:

<<Plotting 20 N(0,1) RVs in R>>=
gen test = normal(20)
gen test2 = normal(20)
plot test,test2
@ 

\end{document}