I can easily make notched boxplot with ggplot:
df <- data.frame(X = rep(c(\'A\',\'B\'),each = 50), Y = rnorm(100)) plt <- ggplot(df, aes(x = X, y = Y))