If you want to be heavy-handed, you can do
aa = suppressMessages(inner_join(a, b))
The better choice, as Jazzurro suggests, is to specify the by
argument. dplyr
only prints a message to let you know what its guess is for which columns to join by. If you don't make it guess, it doesn't confirm things with you. This is a safer choice as well, from defensive coding standpoint.
If this is in a knitr
document, you can set the chunk option message=FALSE
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…