Skip to content

Commit 1f6375f

Browse files
committed
Merge tag 'ggplot2-0.9.3'
2 parents 58fef0d + e00f438 commit 1f6375f

File tree

3 files changed

+7
-8
lines changed

3 files changed

+7
-8
lines changed

DESCRIPTION

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: ggplot2
22
Type: Package
33
Title: An implementation of the Grammar of Graphics
4-
Version: 0.9.2.99
4+
Version: 0.9.3
55
Author: Hadley Wickham <h.wickham@gmail.com>, Winston Chang <winston@stdout.org>
66
Maintainer: Hadley Wickham <h.wickham@gmail.com>
77
Description: An implementation of the grammar of graphics
@@ -23,7 +23,7 @@ Imports:
2323
grid,
2424
gtable (>= 0.1.1),
2525
reshape2,
26-
scales (>= 0.2.2.99.1),
26+
scales (>= 0.2.3),
2727
proto,
2828
MASS
2929
Suggests:
@@ -36,8 +36,7 @@ Suggests:
3636
multcomp,
3737
nlme,
3838
testthat
39-
Extends:
40-
sp
39+
Enhances: sp
4140
License: GPL-2
4241
URL: http://had.co.nz/ggplot2/
4342
LazyData: true

NEWS

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ggplot2 0.9.2.99
1+
ggplot2 0.9.3
22
----------------------------------------------------------------
33

44
* The `plotmatrix` function has been deprecated and prints a warning
@@ -41,7 +41,7 @@ MINOR FEATURES
4141

4242
* In `stat_ydensity` and `geom_violin`, the `scale` argument now accepts
4343
the value "width", for equal widths. Additionally `scale="equal"` has
44-
been depecrated, in favor of "area". (Jean-Olivier Irisson)
44+
been deprecated, in favor of "area". (Jean-Olivier Irisson)
4545

4646
* `stat_quantile` now supports `rqss`.
4747

man/coord_polar.Rd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,9 +46,9 @@ df <- data.frame(
4646
value = c(80, 20)
4747
)
4848
ggplot(df, aes(x = "", y = value, fill = variable)) +
49-
geom_bar(width = 1) +
49+
geom_bar(width = 1, stat = "identity") +
5050
scale_fill_manual(values = c("red", "yellow")) +
51-
coord_polar("y", start=pi / 3) +
51+
coord_polar("y", start = pi / 3) +
5252
labs(title = "Pac man")
5353

5454
# Windrose + doughnut plot

0 commit comments

Comments
 (0)