-4

I am trying to perform left join operation in R I am getting the below error is anyone has any idea what the error is trying to say.?

Feed <- left_join(sa_charge_new1, all_impact_files1, concated_column = concated_column)

Error:

 Error in left_join_impl(x, y, by$x, by$y, suffix$x, suffix$y, check_na_matches(na_matches)) :
    'translateCharUTF8' must be called on a CHARSXP' 
Frank
  • 66,179
  • 8
  • 96
  • 180
vinay karagod
  • 256
  • 1
  • 3
  • 18
  • 2
    Please provide a [reproducible example](https://stackoverflow.com/questions/5963269/how-to-make-a-great-r-reproducible-example) with sample input data. That will make it easier to help you. – MrFlick Sep 08 '17 at 19:04
  • 1
    `left_join` does not take an argument `concated_column = `. – Frank Sep 08 '17 at 19:09
  • my data is huge sa_charge_new1 file contains 177k records and all_impact_files1 contains 800k records and I cannot share the data. – vinay karagod Sep 08 '17 at 19:11

1 Answers1

0

Your answer is here:

left_join_impl(x, y, by$x, by$y, suffix$x, suffix$y, check_na_matches(na_matches))

There is no argument passed by left_join() in the name of "concated_column". Read the description by ?left_join.

kukushkin
  • 312
  • 4
  • 16