I found strange behavior in my RStudio using tydeverse... maybe is my own error.
I have a current situation:
a <- 2
b <- 5
library(tidyverse)
maximo <- if (a > b) a else b
I get the right answer maximo = 5
maximo %>% if (a > b) a else b
I get FALSE as answer...
Someboby can help me?