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
I have managed to produce a Boxplot with a Logarithmic Y axis via mapping. However, the tooltip shows all the log of all the values of the Boxplot (Min, Max, Median etc) instead of the actual values.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
I have managed to produce a Boxplot with a Logarithmic Y axis via mapping. However, the tooltip shows all the log of all the values of the Boxplot (Min, Max, Median etc) instead of the actual values.
Mapping = (logPoint, index) => new Coordinate(index, Math.Log(logPoint._Max, s_logBase), Math.Log(logPoint._ThirdQuartile, s_logBase), Math.Log(logPoint._FirtQuartile, s_logBase), Math.Log(logPoint._Min, s_logBase), Math.Log(logPoint._Median, s_logBase)),
Any ideas?
Beta Was this translation helpful? Give feedback.
All reactions