@@ -34,7 +34,7 @@ print.matrix() only exists for backwards compatibility: it is the same
34
34
as print.default(). Very likely print.matrix was used for the
35
35
right=TRUE argument that S's print.default does not have, but this is
36
36
unnecessary. If you want the call sequence of print.matrix, use prmatrix
37
- instead. Also, note that print(.default) prints the attributes of the matrix
37
+ instead. Also, note that print prints the attributes of the matrix
38
38
whereas prmatrix does not.
39
39
40
40
@@ -62,8 +62,8 @@ data.class() reports "numeric" for integer vectors.)
62
62
]
63
63
64
64
Unless the package makes use of setMethod (methods), loading can be
65
- speeded up by having an object called .noGenerics (with any value) in
66
- the package.
65
+ speeded up (unless `methods' is not loaded) by having an object called
66
+ .noGenerics (with any value) in the package.
67
67
68
68
69
69
Namespaces
@@ -82,7 +82,8 @@ documentation is in `Writing R Extensions'.
82
82
Other changes
83
83
-------------
84
84
85
- The default random number generators have been changed.
85
+ The default random number generators have been changed: see the NEWS
86
+ file and ?RNGversion.
86
87
87
88
88
89
solve.default() now uses LAPACK by default, and works as documented,
@@ -95,19 +96,16 @@ qr() and qr.solve() for those.
95
96
96
97
Packages should not execute code with side effects in their .R files.
97
98
If you have require() or options() statements at the top level in such
98
- files, please move them to .First.lib. This is necessary for the
99
- experiments with saving objects in databases, a feature planned for
100
- 1.8.x.
99
+ files, please move them to .First.lib (or .onLoad if a namespace is in
100
+ use for the package). This is necessary for the experiments with
101
+ saving objects in databases, a feature planned for 1.8.x.
101
102
102
103
103
- A full double-precision LAPACK library Rlapack.{so,sl,dll,dynlib } is
104
+ A full double-precision LAPACK library Rlapack.{so,sl,dll,dylib } is
104
105
installed with R, unless a high-performance LAPACK library was found
105
106
at configure time. If your package makes use of LAPACK, please
106
107
convert it to use this via
107
108
108
109
$(LAPACK_LIBS) $(BLAS_LIBS)
109
110
110
111
in PKG_LIBS in Makevars.
111
-
112
-
113
-
0 commit comments