Skip to content

Commit

Permalink
Update docs again
Browse files Browse the repository at this point in the history
  • Loading branch information
alexpeters1208 committed Sep 29, 2023
1 parent 0c9125d commit da15b90
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions R/rdeephaven/R/update_by_ops_wrapper.R
Original file line number Diff line number Diff line change
Expand Up @@ -324,7 +324,6 @@ uby_rolling_sum_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -380,7 +379,6 @@ uby_rolling_group_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -436,7 +434,6 @@ uby_rolling_avg_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -492,7 +489,6 @@ uby_rolling_min_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -548,7 +544,6 @@ uby_rolling_max_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -604,7 +599,6 @@ uby_rolling_prod_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -660,7 +654,6 @@ uby_rolling_count_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -716,7 +709,6 @@ uby_rolling_std_tick <- function(cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down Expand Up @@ -774,7 +766,6 @@ uby_rolling_wavg_tick <- function(wcol, cols, rev_ticks, fwd_ticks = 0) {
#' A row containing a null value in the timestamp column belongs to no window and will not be considered
#' in the windows of other rows; its output will be null.
#' Here are some examples of window values:
#' `rev_time = "PT00:10:00", fwd_time = "0"` - contains rows from 10m before through the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "PT00:10:00"` - contains rows from 10m before through 10m following
#' the current row timestamp (inclusive)
#' `rev_time = "PT00:10:00", fwd_time = "-PT00:05:00"` - contains rows from 10m before through 5m before the
Expand Down

0 comments on commit da15b90

Please sign in to comment.