For an introduction, start
here.
On Unix (Solaris, Linux or OS 10) R is started in a terminal
with
R
You quit the program with
q()
at the R command line prompt. As usual, the command line interface (CLI)
is more powerful and flexible then the graphical user interface (GUI).
A good start is to type
demo()
after starting up R. For example, to see some graphics demos, type
demo()
Here is a trivial sample sessions,
which generates a normal distributed data sets, prints statistical
properties and plots some data points.
x <- rnorm(50)
summary(x)
plot(x)
q()
|
|