I would like to remove the tick marks from the graph in R, but not the text associated with the individual marks. How to do it?
My code is as follows:
boxplot(boxDat ~ class, ylab = "Predictive Scoring", names = c("ANN", "Random\nForest", "Logistic\nRegression"), cex.axis=1, xaxt='n')
source
share