myBind: Recursive Non-Complaining Bind Functions

Description Usage Arguments

View source: R/bind.R

Description

Binds elements of a list to each other as a data frame or a vector. myBindVec is depricated. Use myBind{..., type = "vec"}.

Usage

1
2
myBind(x, left = 1, right = legnth(x), type = "df.row")
myBindVec(x, left = 1, right = length(x))

Arguments

x

a list of dataframes, vectors, or matrices

left

numeric, the index of the first element to include. Defaults to 1 so as to bind entire list by default.

right

numeric, the index of the last element to include. Defaults to length(x) to bind entire list by default.

type

character, indicates output. Defaults to "df.row". "vec" binds to a vector. "df.row" binds by row to a dataframe. "df.col" binds by column to a dataframe.


mattgarber4/myUtils documentation built on Dec. 13, 2020, 12:54 p.m.