I am running an R function within a third-party software package. (The third-party package uses an older version of R, version 3.6). The output I am passing along is:
library(tidyverse)
theOutput <- x %>%
left_join(y, by = "id")
However, the output I am getting from the package is this notification, which I see in RStudio whenever I do a join, Joining, by = "id"
. How do I silence this message such that it will not be passed along as output? I tried
options(tidyverse.quiet = TRUE)
but it does not seem to stop the join message.
(Also, if the only answer is "your third party needs to use the newest version of R," I understand, but that is unfortunately impossible.)