The following R script generates a bar that is too tall to fit in the plot. Note that the bar goes beyond the y axis and its annotation (percentage) is not shown. How can I generate a bar plot that shows the whole tall bar and its annotation?
png(filename = "plot.png")
x <- c("A", "B")
y <- c(2e6 + 10, 400)
sum_Y <- sum(y)
midpoints <- barplot(height = y, log = "y")
text(midpoints, y, sprintf("%.2f%%", y / sum_Y * 100), pos = 3)
dev.off()


