Could not find function "describe" (descriptive stats analysis

this is not a function in the tidyverse....
its possible you mean to use a describe function from another library, would you know which one?
or perhaps you mean to use summarise rather than describe?

summarise(mtcars,
         mean_mpg = mean(mpg),
         sd_mpg = sd(mpg))
  mean_mpg   sd_mpg
1 20.09062 6.026948