R Programming

Add Excel Sheet library(readxl)my_data <- read_excel("data.xlsx", sheet = "data",col_types = c("text", "numeric", "numeric"))View(data) Title /x and y / change with color boxplot(Height ~ Crop ,data = my_data , main="Blox Plot of Testing",xlab ="Crop Type" ,ylab="Plant Height(cm)",col="red")