-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Project-wide renaming. Things seem to be mostly working.
- Loading branch information
1 parent
cf76c42
commit 7267395
Showing
35 changed files
with
431 additions
and
449 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,13 @@ | ||
Package: ggjoy | ||
Package: ggridges | ||
Type: Package | ||
Title: Joyplots in 'ggplot2' | ||
Version: 0.3.0.9000 | ||
Title: Ridgeline plots in 'ggplot2' | ||
Version: 0.4.0 | ||
Authors@R: c( | ||
person("Claus O.", "Wilke", , "[email protected]", c("cre", "aut")), | ||
person("RStudio", role = c("cph"), comment = "Copyright for ggplot2 code copied to ggjoy")) | ||
Description: Joyplots provide a convenient way of visualizing changes in distributions over | ||
person("RStudio", role = c("cph"), comment = "Copyright for ggplot2 code copied to ggridges")) | ||
Description: Ridgeline plots provide a convenient way of visualizing changes in distributions over | ||
time or space. This package enables the creation of such plots in 'ggplot2'. | ||
URL: https://github.com/clauswilke/ggjoy | ||
URL: https://github.com/clauswilke/ggridges | ||
Depends: | ||
R (>= 3.2), | ||
ggplot2 (>= 2.2.0), | ||
|
@@ -30,7 +30,7 @@ Suggests: | |
VignetteBuilder: knitr | ||
Collate: | ||
'data.R' | ||
'ggjoy.R' | ||
'ggridges.R' | ||
'geoms.R' | ||
'geomsv.R' | ||
'geoms-gradient.R' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,6 @@ | ||
ggjoy 0.3.0.9000 | ||
ggridges 0.4.0 | ||
---------------------------------------------------------------- | ||
- Added an option to center axis labels to `theme_joy()`. | ||
|
||
ggjoy 0.3.0 | ||
---------------------------------------------------------------- | ||
- Added cyclical scales that make it easy to alternate between fill colors | ||
and other aesthetics. | ||
|
||
ggjoy 0.2.0 | ||
---------------------------------------------------------------- | ||
Numerous improvements: | ||
- New stat `binline` that can be used to draw histogram joyplots. | ||
- Various improvements in `stat_joy`. In particular, it now works properly | ||
with multiple panels. It also now has parameters `from` and `to` to limit the | ||
range of density estimation, just like `density()`. | ||
- Improvements in the vignettes | ||
- New geoms `geom_ridgeline_gradient` and `geom_joy_gradient` that can handle gradient fills. | ||
|
||
ggjoy 0.1.0 | ||
---------------------------------------------------------------- | ||
First complete implementation ready for initial release | ||
- Initial import of code base from ggjoy, and renaming: | ||
geom_joy -> geom_density_ridges | ||
stat_joy -> stat_density_ridges | ||
theme_joy -> theme_ridges |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
#' ggjoy. | ||
#' ggridges. | ||
#' | ||
#' @name ggjoy | ||
#' @name ggridges | ||
#' @docType package | ||
#' @import ggplot2 | ||
NULL |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.