File tree Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Expand file tree Collapse file tree 3 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -95,6 +95,7 @@ S3method(print,ggproto_method)
95
95
S3method(print,rel)
96
96
S3method(print,theme)
97
97
S3method(print,uneval)
98
+ S3method(scale_type,AsIs)
98
99
S3method(scale_type,Date)
99
100
S3method(scale_type,POSIXt)
100
101
S3method(scale_type,character)
Original file line number Diff line number Diff line change 1
1
# ggplot2 2.0.0.9000
2
2
3
+ * The default scale for columns of class "AsIs" is now "identity" (#1518 ).
4
+
3
5
* ` geom_boxplot() ` now understands ` outlier.color ` (#1455 ).
4
6
5
7
* ` geom_histgram(bins = n) ` now gives a histogram with ` n ` bins, not ` n + 1 `
Original file line number Diff line number Diff line change @@ -153,6 +153,9 @@ scale_type.default <- function(x) {
153
153
" continuous"
154
154
}
155
155
156
+ # ' @export
157
+ scale_type.AsIs <- function (x ) " identity"
158
+
156
159
# ' @export
157
160
scale_type.logical <- function (x ) " discrete"
158
161
You can’t perform that action at this time.
0 commit comments