I want to plot a column with over 30.000 records using Boxpot. The data range is various (from 0 to 1500000). I got the result like this:
Why it doens't show the boxplot? It looks like a stripchart to me. How to show the boxplot (with median, etc.)?
Here the code I used:
png("time.png")
boxplot(df$time, main="Box plot of session duration", ylab="seconds")
dev.off()