-
Notifications
You must be signed in to change notification settings - Fork 42
/
Copy pathoce.write.table.Rd
38 lines (36 loc) · 1.33 KB
/
oce.write.table.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/oce.R
\name{oce.write.table}
\alias{oce.write.table}
\title{Write the Data Portion of Object to a File}
\usage{
oce.write.table(x, file = "", ...)
}
\arguments{
\item{x}{an \linkS4class{oce} object.}
\item{file}{file name, as passed to \code{\link[utils:write.table]{utils::write.table()}}. Use
\code{""} to get a listing in the terminal window.}
\item{...}{optional arguments passed to \code{\link[utils:write.table]{utils::write.table()}}.}
}
\value{
The value returned by \code{\link[utils:write.table]{utils::write.table()}}.
}
\description{
The output has a line containing the names of the columns in \code{x$data},
each enclosed in double quotes. After that line are lines for the data
themselves. The default is to separate data items by a single space
character, but this can be altered by using a \code{sep} argument in the
\code{...} list; see \code{\link[utils:write.table]{utils::write.table()}}.
}
\details{
This function is little more than a thin wrapper around
\code{\link[utils:write.table]{utils::write.table()}}, the only difference being that row names
are omitted here, making for a file format that is more conventional in
Oceanography.
}
\seealso{
`\code{\link[utils:write.table]{utils::write.table()}}, which does the actual work.
}
\author{
Dan Kelley
}