left_join {linq} R Documentation

A left join is a type of relational join operation that combines

Description

two datasets based on a common column or variable. The result of
a left join includes all the rows from the left dataset and any
matching rows from the right dataset.

Usage

left_join(left, right,
    by.x = NULL,
    by.y = NULL,
    by = NULL,
    grep = NULL);

Arguments

left

[as dataframe]

right

[as dataframe]

by

the field name that used for join two data table, if the field name that specific by this parameter is existsed in both `left` and `right`. [as string]

grep

text grep expression for the index key string value, see text_grep.

Details

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]