0

I'd like to learn more information on %>% in R programming.

I have tried googling and researching the issue but have come up empty handed.

I have also searched overflorw but no information was found.

Any links or resources would be greatly appreciated

JDiaz
  • 147
  • 1
  • 8

1 Answers1

4

This is part of the magrittr package, where the link to the left provides an excellent introduction.

The %>% is beginning to be incorporated into other packages, although it can be used with any functions to pipe the output into the first argument input to a second function. The %>% operator can also be chained.

Ken Benoit
  • 14,454
  • 27
  • 50