get_col_names_args: Get column names from the method arguments

get_col_names_argsR Documentation

Get column names from the method arguments

Description

Get column names from the method arguments

Usage

get_col_names_args(.list)

Arguments

.list

Value

a character with the column names. If an element names .column_name is not present in the .list, an empty vector is returned.

Examples

library(beadplexr)

list(.column_name = "XXX") |> beadplexr:::get_col_names_args()
list(A = list(.column_name = "XXX")) |> beadplexr:::get_col_names_args()
list(A = list(.column_name = "Inner"), .column_name = "Outer") |> beadplexr:::get_col_names_args()
list(A = "ccc") |> beadplexr:::get_col_names_args()


beadplexr documentation built on July 9, 2023, 5:59 p.m.