Tag / begginer

    Loading posts...
  • How to use pipeline operator %>%?

    The pipeline operator %>% belong to the magrittr library, but from 2014 is included into the dplyr package, allowing us to concat multiple operations. Provide a mechanism for chaining commands with a new operator,%>%.This operator will send a value, or the result of an expression, to the next function. . What does it mean to concatenate functions? Let’s gonna check…