Open
Description
ggplot(iris,aes(Petal.Length,Sepal.Width))+
geom_point()+
coord_trans(x="sqrt")+
theme(axis.line.x = element_line(color="black"))
iris$Petal.Length[1]=0
ggplot(iris,aes(Petal.Length,Sepal.Width))+
geom_point()+
coord_trans(x="sqrt")+
theme(axis.line.x = element_line(color="black"))
I believe the axis line should stay preserved, since sqrt(0)=0, or is there a conceptual error in my reasoning?