'Need help getting summary statistics in a filtered data frame by dplyr

I`ve reached the boxplot that I need with the code below, but I cannot extract the information that I need in each category ( Min. - 1st Qu. - Median - Mean - 3rd Qu. - Max.). How can I do it?

gapminder %>%
  filter(ciclo_real_reg >= 45) %>%   ##Removing Outliers
  filter(ciclo_real_reg <= 120) %>%  ##Removing Outliers
  ggplot(aes(x=DxP, y = ciclo_real_reg))+geom_boxplot(aes(color = DxP))


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source