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
FEAT/PERF: Implement mapping_method support for ScaleContinuous
ScaleContinous maps values to palette colours as follows:
- unique values are found
- unique values are mapped to colors
- colors are matched to the original vector
If most values are unique, we can be faster by simply maping all values to colors,
without finding and matching unique values first.
In some scenarios the geom can guess or know if that is going to be the case.
The goal of this commit is to let the geom tell the ScaleContinuous scale
how the mapping from values to colours should be done.
By default the existing "unique" approach is used.
The geom may now specify `scale_params = list(fill=list(mapping_method = "raw"))`
to tell the scale corresponding to the fill aesthetic to use a "raw" approach
of mapping values to colours without finding unique values first.
Besides the default "unique" and the new "raw" mapping methods, we also allow
the geom to ask to use the "binned" approach, where the geom specifies a number
of intervals to use and the mapping process is as follows:
- values are binned in N intervals
- intervals are mapped to colors
This approach is "lossy" (we have a maximum of N different colours), but
this can be much faster and have almost no difference with respect to
the other mapping methods.
0 commit comments