Function conducts inner join on two datasets and reports number of dropped rows on data_x.

report_dropped_company_names(
  data_x,
  data_y,
  name_y,
  merge_cols,
  name_x = "PACTA results",
  log_path
)

Arguments

data_x

Tibble with data that can be joined to data_y.

data_y

Tibble with data that can be joined to data_x.

name_y

Name of data_x.

merge_cols

Vector holds columns to join on.

name_x

Name of `data_x, defaults to PACTA results.

log_path

String holding path to log file.

Value

The merged dataset.