Relative Content

Tag Archive for rreadline

Getting data and boxplotting using readline function with R

BOXPLOTOSS<- function() { x <- read.csv(file.choose() , sep = “;” , stringsAsFactors = T) colon <- readline(prompt = “Which column: “) boxplot(x$ , main = “Radius” , ylim = c(0,29), xlab = “X”,ylab = “Y” ) I want to create a boxplot by typing the colon name I want from the data I receive, but […]