You can insert pipe operators linked to keyboard shortcuts in RStudio.
Added button View Object
- This is needed to quickly view an object or expression. This is analogous to expression View(your_dataframe_or_expression)
Operator | Package |
---|---|
<- |
base(Unlike the operator pipe in Rstudio, my version takes into account the space character after the operator, in Rstudio does not take into account.) |
%>% |
dplyr(Unlike the operator pipe in Rstudio, my version takes into account the space character after the operator, in Rstudio does not take into account.) |
%<>% |
magrittr |
%$% |
magrittr |
%+% |
concatenate |
%in% |
base |
%T>% |
magrittr |
if (!requireNamespace("devtools", quietly = TRUE))
install.packages("devtools")
devtools::install_github('Ranlod/insertPipe')