dplyr (version 0.4.1) prints the colnames by which it is performing the join. Is it possible to turn this option off?
R code:
library(dplyr)
a=data.frame(x=1,y=2)
b=data.frame(x=1,z=10)
aa=inner_join(a,b)
for the last line, dplyr prints:
Joining by: "x"
that is nice for interactive work, but I am running in Rscript and all these lines are clogging my screen.
See Question&Answers more detail:os