The R Project SVN R

Rev

Rev 7002 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 7002 Rev 7133
Line 1... Line 1...
1
R 0.90.0 for Windows 9x and NT
1
R 0.99.0 for Windows 9x and NT
2
==============================
2
==============================
3
 
3
 
4
This distribution contains a binary distribution of R-0.90.0 to run on
4
This distribution contains a binary distribution of R-0.99.0 to run on
5
Windows 95, 98 and NT4 on Intel/clone chips. It is designed to
5
Windows 95, 98 and NT4 on Intel/clone chips. It is designed to
6
be as close as possible to the implementation on Unix, but see the
6
be as close as possible to the implementation on Unix, but see the
7
list of differences below. The port was by Guido Masarotto with
7
list of differences below. The port was by Guido Masarotto with
8
many important contributions by Brian Ripley.
8
many important contributions by Brian Ripley.
9
 
9
 
Line 14... Line 14...
14
============
14
============
15
 
15
 
16
The simplest way is to run the installer (double-click on the icon for
16
The simplest way is to run the installer (double-click on the icon for
17
rwinst.exe and navigate its wizard-like pages).
17
rwinst.exe and navigate its wizard-like pages).
18
 
18
 
19
To install manually, unpack rw0900b1.zip and rw0900b2.zip anywhere you
19
To install manually, unpack rw0990b1.zip and rw0990b2.zip anywhere you
20
like. It will unpack to a directory tree under rw0900. The help, HTML
20
like. It will unpack to a directory tree under rw0990. The help, HTML
21
and latex help files are in separate files rw0900h.zip, rw0900w.zip
21
and latex help files are in separate files rw0990h.zip, rw0990w.zip
22
and rw0900l.zip which should be unpacked in the same directory you
22
and rw0990l.zip which should be unpacked in the same directory you
23
unpacked rw0900b.zip.  File rw0900d.zip contains PDF versions of the
23
unpacked rw0990b.zip.  File rw0990d.zip contains PDF versions of the
24
(draft) manuals for R, which unpack into rw0900/doc/manual.
24
(draft) manuals for R, which unpack into rw0990/doc/manual.
25
 
25
 
26
 
26
 
27
Usage
27
Usage
28
=====
28
=====
29
 
29
 
30
There are two executables in rw0900\bin:
30
There are two executables in rw0990\bin:
31
 
31
 
32
GUI:
32
GUI:
33
 
33
 
34
Rgui.exe runs as a standard Windows GUI executable and provides an R
34
Rgui.exe runs as a standard Windows GUI executable and provides an R
35
console in its own window. It takes the standard R command-line
35
console in its own window. It takes the standard R command-line
36
arguments; these are most easily set by making a shortcut to
36
arguments; these are most easily set by making a shortcut to
37
...\rw0900\bin\rgui.exe and adding the arguments in the Target field.
37
...\rw0990\bin\rgui.exe and adding the arguments in the Target field.
38
Set the `Start in' field of the shortcut to the directory you want to use
38
Set the `Start in' field of the shortcut to the directory you want to use
39
as the working directory (where workspaces and files are saved and
39
as the working directory (where workspaces and files are saved and
40
loaded from).
40
loaded from).
41
 
41
 
42
Command-line editing is available: see Help | Console for details.
42
Command-line editing is available: see Help | Console for details.
Line 129... Line 129...
129
the default by options(htmlhelp=T) or for individual help items by
129
the default by options(htmlhelp=T) or for individual help items by
130
help(topic, htmlhelp=T).  Using help.start() sets the browser to the 
130
help(topic, htmlhelp=T).  Using help.start() sets the browser to the 
131
top-level page, from which you can access a search engine.
131
top-level page, from which you can access a search engine.
132
 
132
 
133
(v) Latex help files are available for use with help(topic, offline=T).
133
(v) Latex help files are available for use with help(topic, offline=T).
134
You will need to customize the file rw0651\bin\helpPRINT.bat: it
134
You will need to customize the file rw0990\bin\helpPRINT.bat: it
135
contains instructions.
135
contains instructions.
136
 
136
 
137
 
137
 
138
 
138
 
139
Customization
139
Customization
Line 173... Line 173...
173
Adding packages
173
Adding packages
174
===============
174
===============
175
 
175
 
176
Binaries for many packages are available at
176
Binaries for many packages are available at
177
CRAN/bin/windows/windows-NT/contrib. These are zip files which should
177
CRAN/bin/windows/windows-NT/contrib. These are zip files which should
178
be unpacked in rw0900\library. They are then available for use. You
178
be unpacked in rw0990\library. They are then available for use. You
179
can also use the installer rwinst.exe to selectively unpack the zip
179
can also use the installer rwinst.exe to selectively unpack the zip
180
files.
180
files.
181
 
181
 
182
The list of packages and functions given by HTML help and used by the
182
The list of packages and functions given by HTML help and used by the
183
search engine can be updated from a running R process by the command
183
search engine can be updated from a running R process by the command
184
 
184
 
185
	link.html.help()
185
	link.html.help()
186
 
186
 
187
provided the owner of the process has write permission on
187
provided the owner of the process has write permission on
188
rw0900\doc\html.  If you have the source-package files and Perl
188
rw0990\doc\html.  If you have the source-package files and Perl
189
installed you can use
189
installed you can use
190
 
190
 
191
	cd ...\rw0900\src\gnuwin32\help
191
	cd ...\rw0990\src\gnuwin32\help
192
	make indices
192
	make indices
193
 
193
 
194
Private libraries of packages can be used and can be specified by the
194
Private libraries of packages can be used and can be specified by the
195
environment variable R_LIBS. (Separate directories by ";" in this
195
environment variable R_LIBS. (Separate directories by ";" in this
196
version.)  They will not be linked to HTML help.  In more detail, to
196
version.)  They will not be linked to HTML help.  In more detail, to
Line 203... Line 203...
203
.lib.loc <- c("R:/libraries/gm", .lib.loc)
203
.lib.loc <- c("R:/libraries/gm", .lib.loc)
204
 
204
 
205
to your .Rprofile or at the end of R_HOME\etc\Rprofile.
205
to your .Rprofile or at the end of R_HOME\etc\Rprofile.
206
 
206
 
207
To install a package from source code you need the source-package
207
To install a package from source code you need the source-package
208
distribution rw0900sp.zip installed (but not the R source). This contains
208
distribution rw0990sp.zip installed (but not the R source). This contains
209
detailed instructions.
209
detailed instructions.
210
 
210
 
211
 
211
 
212
Differences from Unix
212
Differences from Unix
213
=====================
213
=====================