compare_names {name}R Documentation

Compare the Names of Two Objects

Description

Compare the Names of Two Objects

Usage

compare_names(x, y)

Arguments

x

first object

y

second object

Value

character vector of differences, invisibly

Examples

s <- tibble::tibble(a = 1, b = 2, d = 3)
t <- tibble::tibble(a = 1, d = 3, c = 2)
compare_names(s, t)

[Package name version 0.0.1 Index]