insensitive {httr}R Documentation

Create a vector with case insensitive name matching.

Description

Create a vector with case insensitive name matching.

Usage

insensitive(x)

Arguments

x

vector to modify

Examples

x <- c("abc" = 1, "def" = 2)
x["ABC"]
y <- insensitive(x)
y["ABC"]
y[["ABC"]]

[Package httr version 1.3.1 Index]