1\name{subset}
2
3
4\alias{subset}
5\alias{[,timeDate,missing,missing-method}
6\alias{[,timeDate,numeric,missing-method}
7\alias{[,timeDate,logical,missing-method}
8\alias{[,timeDate,character,missing-method}
9\alias{[,timeDate,ANY,missing-method}
10\alias{[<-.timeDate}
11
12
13\title{Subsetting a 'timeDate' Object}
14
15
16\description{
17
18    Extracts or replaces subsets from 'timeDate' objects.
19
20}
21
22% FIXME
23% \usage{
24% \S4method{[}{timeDate}(x, \dots, drop = TRUE)
25% }
26
27
28% \arguments{
29
30%     \item{x}{
31%         an object of class \code{timeDate}.
32%         }
33%     \item{\dots}{
34%         arguments passed to other methods.
35%         }
36%     \item{drop}{
37%         a logical flag, by default \code{TRUE}.
38%         }
39% }
40
41
42\value{
43
44    returns an object of class \code{timeDate}.
45
46}
47
48
49\examples{
50## timeCalendar -
51   tS = timeCalendar()
52
53## [ -
54   # Subsetting Second Quarter:
55   tS[4:6]
56
57## [<-
58   # Replacing:
59}
60
61
62\keyword{chron}
63
64