Skip to content

Commit

Permalink
port r39531 from trunk
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.r-project.org/R/branches/R-2-4-branch@39532 00db46b3-68df-0310-9c12-caf00c1e9a41
  • Loading branch information
ripley committed Sep 27, 2006
1 parent 869a80d commit 86e588c
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 5 deletions.
7 changes: 6 additions & 1 deletion doc/manual/R-admin.texi
Expand Up @@ -770,7 +770,12 @@ AthlonXP chips are available in the @file{windows/contrib/ATLAS} area on
libraries are located. You will need to make the libraries
yourself@footnote{We do this using the Cygwin compilers, often with
some difficulty.}: none of the binaries we have seen are compiled for
the correct compiler.
the correct compiler. Since @R{} has its own @samp{xerbla} it is best
to delete that in ATLAS by

@example
ar d /path/to/libf77blas.a xerbla.o
@end example

Another possibility is to use AMD's AMD Core Math Library (ACML)
@url{http://www.amd.com/acml, @code{www.amd.com/@/acml}}. To use the
Expand Down
3 changes: 2 additions & 1 deletion src/library/base/man/colnames.Rd
Expand Up @@ -31,7 +31,8 @@ colnames(x) <- value
the first component is used as the row names, and the second component
(if any) is used for the col names. For a data frame, \code{rownames}
and \code{colnames} are equivalent to \code{\link{row.names}} and
\code{\link{names}} respectively.
\code{\link{names}} respectively, but the latter are preferred (and
can be much faster).

If \code{do.NULL} is \code{FALSE}, a character vector (of length
\code{\link{NROW}(x)} or \code{\link{NCOL}(x)}) is returned in any
Expand Down
2 changes: 1 addition & 1 deletion src/library/base/man/data.frame.Rd
Expand Up @@ -86,7 +86,7 @@ default.stringsAsFactors()
\code{\link{I}},
\code{\link{plot.data.frame}},
\code{\link{print.data.frame}},
\code{\link{row.names}},
\code{\link{row.names}}, \code{\link{names}} (for the column names),
\code{\link{[.data.frame}} for subsetting methods,
\code{\link{Math.data.frame}} etc, about
\emph{Group} methods for \code{data.frame}s;
Expand Down
5 changes: 3 additions & 2 deletions src/library/base/man/merge.Rd
Expand Up @@ -18,7 +18,8 @@ merge(x, y, \dots)
sort = TRUE, suffixes = c(".x",".y"), \dots)
}
\arguments{
\item{x, y}{data frames, or objects to be coerced to one}
\item{x, y}{data frames, or objects to be coerced to one. Neither is
currently allowed to have zero rows.}
\item{by, by.x, by.y}{specifications of the common columns. See Details.}
\item{all}{logical; \code{all = L} is shorthand for \code{all.x = L} and
\code{all.y = L}.}
Expand Down Expand Up @@ -68,7 +69,7 @@ merge(x, y, \dots)
common columns, but for \code{sort=FALSE} are in an unspecified order.
The columns are the common columns followed by the
remaining columns in \code{x} and then those in \code{y}. If the
matching involved row names, an extra character column
matching involved row names, an extra character column called
\code{Row.names} is added at the left, and in all cases the result has
no special row names.
}
Expand Down

0 comments on commit 86e588c

Please sign in to comment.