File tree 2 files changed +2
-3
lines changed
2 files changed +2
-3
lines changed Original file line number Diff line number Diff line change 4
4
ranges (#435 ).
5
5
* New ` label_date_short(leading) ` argument to replace leading zeroes (#442 )
6
6
* ` breaks_pretty() ` will return the input limit when it has no range (#446 )
7
- * ` transform_exp ()` now has more sensible breaks, available in ` breaks_exp() `
7
+ * ` breaks_exp ()` now provides more sensible breaks for the exponential transform
8
8
(@teunbrand , #405 ).
9
9
* The scales package now keeps track of known palettes. These can be retrieved
10
10
using ` get_palette() ` or registered using ` set_palette() ` (#396 ).
Original file line number Diff line number Diff line change @@ -255,8 +255,7 @@ transform_exp <- function(base = exp(1)) {
255
255
function (x ) base ^ x ,
256
256
function (x ) log(x , base = base ),
257
257
d_transform = function (x ) base ^ x * log(base ),
258
- d_inverse = function (x ) 1 / x / log(base ),
259
- breaks = breaks_exp(),
258
+ d_inverse = function (x ) 1 / x / log(base )
260
259
)
261
260
}
262
261
You can’t perform that action at this time.
0 commit comments