From a184c7905286dcf2d90df28f5b27d3427a1494e1 Mon Sep 17 00:00:00 2001 From: Joshua Ulrich Date: Mon, 20 Feb 2023 15:26:31 -0600 Subject: [PATCH] Add aliases for undocumented functions These were triggered via _R_CHECK_UNDOC_USE_ALL_NAMES_=true --- man/index.Rd | 4 ++++ man/subset.xts.Rd | 2 +- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/man/index.Rd b/man/index.Rd index 0d23f31c..0a97b5fb 100644 --- a/man/index.Rd +++ b/man/index.Rd @@ -15,6 +15,7 @@ \alias{.indexwday} \alias{.indexweek} \alias{.indexmon} +\alias{.indexisdst} \alias{convertIndex} \title{ Get and Replace the Class of an xts Index } \description{ @@ -44,6 +45,7 @@ convertIndex(x, value) .indexyear(x) .indexyday(x) +.indexisdst(x) } \arguments{ \item{x}{ an \code{xts} object } @@ -83,6 +85,8 @@ The \code{.indexXXX} functions extract time components (similar to \item{\code{.indexmon}}{0 - 11: month of the year (local time)} \item{\code{.indexyear}}{years since 1900 (local time)} \item{\code{.indexyday}}{0 - 365: day of the year (local time, 365 only in leap years)} + \item{\code{.indexisdst}}{1, 0, -1: Daylight Saving Time flag. Positive if Daylight + Saving Time is in effect, zero if not, negative if unknown.} } Changes in timezone, index class, and index format internal structure, diff --git a/man/subset.xts.Rd b/man/subset.xts.Rd index e092df3f..4ac64dc7 100644 --- a/man/subset.xts.Rd +++ b/man/subset.xts.Rd @@ -3,7 +3,7 @@ \alias{[.xts} \alias{subset.xts} \alias{.subset.xts} -%- Also NEED an '\alias' for EACH other topic documented here. +\alias{.subset_xts} \title{ Extract Subsets of xts Objects }