Learn R Programming

name (version 0.0.2)

compare_names: Compare the Names of Two Objects

Description

Compare the Names of Two Objects

Usage

compare_names(x, y)

Value

character vector of differences, invisibly

Arguments

x

first object

y

second object

Examples

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

Run the code above in your browser using DataLab