split {linq} R Documentation

split content sequence with a given condition as element delimiter.

Description

Usage

split(x,
    delimiter = NULL,
    ... = NULL);

Arguments

x

a given data sequence

delimiter

an element test function to determine that element is a delimiter object

argv

+ parts: will split the input sequence into n(parts = n) multiple parts + size: will split the input sequence into m multiple parts, and each part size is n(size=n). [as list]

env

[as Environment]

Details

the generated result is different between the vector/list: + for vector data: split the value array directly + for list data: split the list keys array and then break the input list data into multiple parts by keys

Authors

SMRUCC genomics Institute

Value

this function returns data object of type any kind.

clr value class

Examples


[Package linq version 2.33.856.6961 Index]