For computing statistics on a dataset we will be using psych package from R pacman::p_load(pacman, dplyr, GGally, ggplot2, ggthemes, ggvis, httr,
lubridate, plotly, rio, rmarkdown, shiny, stringr, tidyr)
library(datasets)
head(iris)
p_load(psych)
describe(iris$Sepal.Length)
describe(iris) When we execute the above script following is what we get in console This gives us more…