I just want to know why this code produces one result on console and one plot just as I expected
mtcars %>%
select(hp, mpg) %T>%
print() %>%
plot()
But this code doesn't
library(plotluck)
library(skimr)
mtcars %>%
select(hp, mpg) %T>%
skim() %>%
plotluck(data = ., hp ~ mpg)
Can anybody please point out what am I doing wrong??