Write a custom R function that takes any univariate dataset and calculates the mean, minimum, maximum, and standard deviation.
addPercent <- function(x){ percent <- round(x*100, digits = 1) result <- paste(percent, “%”, sep = “”) return(result) } Below are a few output results from this function. > addPercent(.1) [1] “10%” > addPercent(10) [1] “1000%” > addPercent(10.1) [1] “1010%” > addPercent(0.1443) [1] “14.4%” Write a custom R function that inputs a temperature in Fahrenheit […]