File tree Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Expand file tree Collapse file tree 3 files changed +7
-8
lines changed Original file line number Diff line number Diff line change 1
1
Package: ggplot2
2
2
Type: Package
3
3
Title: An implementation of the Grammar of Graphics
4
- Version: 0.9.2.99
4
+ Version: 0.9.3
5
5
Author: Hadley Wickham <h.wickham@gmail.com>, Winston Chang <winston@stdout.org>
6
6
Maintainer: Hadley Wickham <h.wickham@gmail.com>
7
7
Description: An implementation of the grammar of graphics
@@ -23,7 +23,7 @@ Imports:
23
23
grid,
24
24
gtable (>= 0.1.1),
25
25
reshape2,
26
- scales (>= 0.2.2.99.1 ),
26
+ scales (>= 0.2.3 ),
27
27
proto,
28
28
MASS
29
29
Suggests:
@@ -36,8 +36,7 @@ Suggests:
36
36
multcomp,
37
37
nlme,
38
38
testthat
39
- Extends:
40
- sp
39
+ Enhances: sp
41
40
License: GPL-2
42
41
URL: http://had.co.nz/ggplot2/
43
42
LazyData: true
Original file line number Diff line number Diff line change 1
- ggplot2 0.9.2.99
1
+ ggplot2 0.9.3
2
2
----------------------------------------------------------------
3
3
4
4
* The `plotmatrix` function has been deprecated and prints a warning
@@ -41,7 +41,7 @@ MINOR FEATURES
41
41
42
42
* In `stat_ydensity` and `geom_violin`, the `scale` argument now accepts
43
43
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)
45
45
46
46
* `stat_quantile` now supports `rqss`.
47
47
Original file line number Diff line number Diff line change @@ -46,9 +46,9 @@ df <- data.frame(
46
46
value = c(80 , 20 )
47
47
)
48
48
ggplot(df , aes(x = " " , y = value , fill = variable )) +
49
- geom_bar(width = 1 ) +
49
+ geom_bar(width = 1 , stat = " identity " ) +
50
50
scale_fill_manual(values = c(" red" , " yellow" )) +
51
- coord_polar(" y" , start = pi / 3 ) +
51
+ coord_polar(" y" , start = pi / 3 ) +
52
52
labs(title = " Pac man" )
53
53
54
54
# Windrose + doughnut plot
You can’t perform that action at this time.
0 commit comments