-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Closed
Labels
Milestone
Description
The second figure should not fail; log axes should be possible.
library(ggplot2)
#> Warning: package 'ggplot2' was built under R version 3.4.3
ggplot(data.frame(y = c(9.88131291682493e-324, 1000), x = 1:2), aes(x = x, y = y)) +
geom_line()ggplot(data.frame(y = c(9.88131291682493e-324, 1000), x = 1:2), aes(x = x, y = y)) +
geom_line() + scale_y_log10()
#> Error in seq.default(min, max, by = by): 'from' must be a finite number
