| %>% | R Documentation | 
tidyLPA suggests using the pipe operator, %>%, from the magrittr
package (imported here from the dplyr package).
lhs, rhs | 
 An object and a function to apply to it  | 
# Instead of
subset(iris, select = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"))
# you can write
iris %>%
  subset(select = c("Sepal.Length", "Sepal.Width", "Petal.Length", "Petal.Width"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.