kassambara / rstatix

Pipe-friendly Framework for Basic Statistical Tests in R
https://rpkgs.datanovia.com/rstatix/
440 stars 50 forks source link

function y.trans() doesn't exist #171

Open ricoderks opened 1 year ago

ricoderks commented 1 year ago

Hi,

I wanted to use add_y_position(y.trans = "log10"), but I got the error message that the function y.trans doesn't exist. I found where it went wrong and will send you a pull request.

Cheers, Rico

kassambara commented 1 year ago

In the current version, the argument y.trans should be a function like add_y_position(y.trans = log10) not a character (add_y_position(y.trans = "log10")

ricoderks commented 1 year ago

Ow, how stupid of me! I completely didn't think of trying that! I apologize!!