Hi everyone !
On an actual dataset (that comports some point y = 0) where the values can be far from each other (especially for a category) I would like to represent them on a log-transformed axis (log10).
I correctly work with the next code :
ggplot(data, aes(x=organ, y=loadcox, fill=sex)) +
geom_dotplot(binaxis='y', stackdir='center', position=position_dodge(0.8)) +
scale_y_continuous(trans='log10')
However, the point with y=0 are not display..
Can anyone already have the same issue ?
Is it because this function scale_y_continuous(trans) not allowed the 0 (due to the fact that log(0) is not defined) ?
Thanks in advance