huxtable (version 4.4.0)

[.huxtable: Subset a huxtable

Description

Subset a huxtable

Usage

# S3 method for huxtable
[(x, i, j, drop = FALSE)

# S3 method for huxtable [(x, i, j) <- value

# S3 method for huxtable $(x, name) <- value

# S3 method for huxtable [[(x, i, j) <- value

Arguments

x

A huxtable.

i

Rows to select.

j, name

Columns to select.

drop

Not used.

value

A matrix, data frame, huxtable or similar object.

Value

A huxtable.

Details

[ always returns a huxtable, while $ and [[ return the underlying data.

For the replacement function [<-, if value is a huxtable, then its cell properties will be copied into x. In addition, if value fills up an entire column, then column properties will be copied into the replaced columns of x, and if it fills up an entire row, then row properties will be copied into the replaced rows of x.

Replacement functions $<- and [[<- change the data without affecting any properties.

Examples

Run this code
# NOT RUN {
ht <- huxtable(
        a = 1:3,
        b = letters[1:3]
      )

ht[1:2, ]
ht[, 1]
ht$a
ht <- huxtable(a = 1:3, b = 1:3)
ht2 <- huxtable(10:11, 12:13)
bold(ht2) <- TRUE
ht[2:3,] <- ht2
ht

# }

Run the code above in your browser using DataCamp Workspace