You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I transform an axis to log scale this alters the values that show up in the tooltip. For example, I get
'val=0.95' (i.e. log10(9)), rather than 'val=9'
If I transform an axis to log scale this alters the values that show up in the tooltip. For example, I get
'val=0.95' (i.e. log10(9)), rather than 'val=9'
library(plotly)
test=data.frame(index=c(1,2,3), val=c(9,14,2))
ggplotly(
ggplot(test, aes(x=index, y=val)) + geom_point() + scale_y_log10()
)
The text was updated successfully, but these errors were encountered: