chunk_reorder: Chunk Reorder

View source: R/neatsort.R

chunk_reorderR Documentation

Chunk Reorder

Description

Chunk re-order a vector so that specified newstart is first. Different than relevel.

Usage

chunk_reorder(x, newstart = x[[1]])

Details

Borrowed from phyloseq package as needed here and not exported there. Rewritten.

Value

Reordered x

Examples

# Typical use-case
# chunk_reorder(1:10, 5)
# # Default is to not modify the vector
# chunk_reorder(1:10)
# # Another example not starting at 1
# chunk_reorder(10:25, 22)
# # Should silently ignore the second element of `newstart`
# chunk_reorder(10:25, c(22, 11))
# # Should be able to handle `newstart` being the first argument already
# # without duplicating the first element at the end of `x`
# chunk_reorder(10:25, 10)
# all(chunk_reorder(10:25, 10) == 10:25)
# # This is also the default
# all(chunk_reorder(10:25) == 10:25)
# # An example with characters
# chunk_reorder(LETTERS, 'G') 
# chunk_reorder(LETTERS, 'B') 
# chunk_reorder(LETTERS, 'Z') 
# # What about when `newstart` is not in `x`? Return x as-is, throw warning.
# chunk_reorder(LETTERS, 'g') 

microbiome/microbiome documentation built on Aug. 22, 2023, 7:12 a.m.