@@ -5,18 +5,18 @@ Package maintainers should be aware of the following changes scheduled
5
5
to appear in 1.8.0.
6
6
7
7
8
- print.coefmat (which was not a print method) has been deprecated and
8
+ 1) print.coefmat (which was not a print method) has been deprecated and
9
9
replaced by printCoefmat. By default NAs are not suppressed: should
10
10
this be desired call printCoefmat(..., na.print="").
11
11
12
12
13
- codes() and codes<-() have been deprecated. They did not use the
13
+ 2) codes() and codes<-() have been deprecated. They did not use the
14
14
internal codes of an unordered factor, and in almost all cases
15
15
unclass/as.vector/as.integer was intended. There is no replacment for
16
16
codes<-(), but it appears to be unused on CRAN.
17
17
18
18
19
- Multi-argument returns are deprecated. Use a named list, e.g. replace
19
+ 3) Multi-argument returns are deprecated. Use a named list, e.g. replace
20
20
21
21
return(pred, se)
22
22
26
26
.
27
27
28
28
29
- Calling UseMethod with more than two arguments gives a warning, as
29
+ 4) Calling UseMethod with more than two arguments gives a warning, as
30
30
R-lang has long said it did. Normally one argument suffices, and
31
31
32
32
UseMethod("foo", x, ...)
@@ -35,17 +35,17 @@ is incorrect usage: replace it by UseMethod("foo") unless you do not
35
35
want to dispatch on the first argument of the enclosing function.
36
36
37
37
38
- The distinction between as.character(NA) and "NA" introduced in 1.5.0
38
+ 5) The distinction between as.character(NA) and "NA" introduced in 1.5.0
39
39
is now observed by sub, gsub, grep, regexpr, chartr, tolower, toupper,
40
40
substr, substring, abbreviate and strsplit, but not by nchar. NA behaves
41
41
as `unknown': any comparison with NA is has NA results.
42
42
43
43
44
- The S3 methods format.dist() and plot.hclust() are removed from the mva
44
+ 6) The S3 methods format.dist() and plot.hclust() are removed from the mva
45
45
namespace.
46
46
47
47
48
- The QC facilities in package tools have substantially been enhanced, and
48
+ 7) The QC facilities in package tools have substantially been enhanced, and
49
49
hence might report problems not found previously. Analyzing \usage
50
50
sections no longer misses replacement functions or S3 replacement
51
51
methods, and no longer ignores variables and data sets. Code for
@@ -58,15 +58,19 @@ There is some code/documentation consistency checking for data sets and
58
58
S4 classes.
59
59
60
60
61
- Additional Rd markup is now available, including \concept for concept
61
+ 8) Additional Rd markup is now available, including \concept for concept
62
62
index entries to be used by help.search(), \preformatted, as well as
63
63
commands for emphasizing and quoting text, for indicating the usage of
64
64
an S4 method, and for indicating specific kinds of text.
65
65
66
66
67
- .Random.seed is only looked for in the workspace, so R code in
67
+ 9) .Random.seed is only looked for in the workspace, so R code in
68
68
packages should use constructs like
69
69
70
70
exists(".Random.seed", envir=.GlobalEnv, inherits = FALSE)
71
71
seed.save <- get(".Random.seed", envir=.GlobalEnv, inherits = FALSE)
72
72
assign(".Random.seed", seed.save, envir=.GlobalEnv)
73
+
74
+
75
+ 10) The header file <R_ext/Mathlib.h> has been removed: it was replaced by
76
+ <Rmath.h> in R 1.2.0.
0 commit comments