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
Sounds like what you're interested in is a symlog / asinh transform as discussed in #221
Other arbitrary transformations (as well as symlog unless and until we add it to plotly.js) can be handled with custom tick labels - you can do something like:
set the trace.y values to the transformed data
provide the original data as part of trace.hovertext (or hovertemplate with the original data in customdata perhaps)
use yaxis.tickvals/ticktext to label the axis according to the transformation
Uh oh!
There was an error while loading. Please reload this page.
I don't see this feature in docs, so ask here.
For example, I create a scratter to show the percentage difference between real sale_count and my model predicted sale_count of some products :
--
Most of points mainly locate in 0 ~ 1 . (percentage 0% ~ 100% )
As we know, there are always some outliers in the data, some of them may exceed 10 .
So I want to display the plot y axis in :
[-10, -5, -1, 0, 1, 5, 10]
I think this is an usual requirement.
The text was updated successfully, but these errors were encountered: