How to format multiples lines of codes into one single line and vice versa in RStudio?

348 Views Asked by At

Is there a shortcut or an add-in to format multiples lines of codes into one single line and vice versa in RStudio ? Such as in the following image :

Goal enter image description here

Toy Code

#### Singles lines ####
a <- 1; b <- 2; d <- 5;

ggplot(mtcars, aes(x = gear, y = disp, group = gear)) + geom_bar(stat = "identity")

mtcars %>% filter(gear == 4) %>% nrow()

#### Multiple lines ####
a <- 1
b <- 2
d <- 5

ggplot(mtcars, aes(x = gear, y = disp, group = gear)) + 
  geom_bar(stat = "identity")

mtcars %>% 
  filter(gear == 4) %>% 
  nrow()

I already knew and installed the remedy package but it returns an error message when I click on the add-in.

0

There are 0 best solutions below