S4 objects storing the result of partitions.

is.pane(x)

as.pane(x)

# S3 method for pane
format(x, ...)

# S3 method for pane
unique(x, ...)

# S3 method for pane
summary(object, ...)

# S3 method for pane_summary
print(x, ...)

# S3 method for pane
as.data.frame(x, ..., decode = TRUE)

# S3 method for pane
as.list(x, ..., decode = TRUE)

# S4 method for pane
show(object)

# S4 method for pane
rep(x, ...)

# S4 method for pane
[(x, i, j, ..., drop = TRUE)

# S4 method for pane
[[(x, i, j, ..., exact = TRUE)

# S4 method for pane
c(x, ...)

Arguments

x

x

...

...

object

object

decode

If TRUE, data is decoded

i

i

j

j

drop

drop

exact

exact

Slots

sn

Unique record identifier.

.Data

Unique pane identifier.

case_nm

Record type in regards to index assignment.

window_list

A list of considered windows for each pane.

dist_pane_index

The difference between each event and it's index event.

pane_dataset

Data sources in each pane.

pane_interval

The start and end dates of each pane. A number_line object.

pane_length

The duration or length of (pane_interval).

pane_total

The number of records in each pane.

options

Some options passed to the instance of partitions.

window_matched

A list of matched windows for each pane.

Examples

# A test for pane objects
pn <- partitions(date = 1, by = 1)
is.pane(pn); is.pane(2)
#> [1] TRUE
#> [1] FALSE