I tried to search in the net but I didn't find a solution (looks very simple though). I made a loop for box plot and bar plot for all the variables in a table, the received barplots are without label name, means I don't know to refer each graph for a variable. I tried with calling the boxplot(flat_file_numeric[[i]],main=i) but it didn't work. here is my code:
for (i in flat_file_numeric) {
boxplot(i, col = rainbow(ncol(flat_file_numeric)))
}
this is one of the graph I am getting:
I appreciate your answers.