-
Notifications
You must be signed in to change notification settings - Fork 10
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change package name to "tinyplot" (#117)
* Update function names * namespace and document * Update README and tutorial * typo * update tests
- Loading branch information
1 parent
27c8dcb
commit 86dff1c
Showing
37 changed files
with
574 additions
and
496 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,7 +1,7 @@ | ||
Package: plot2 | ||
Package: tinyplot | ||
Type: Package | ||
Title: Lightweight extension of base R plot | ||
Version: 0.0.4 | ||
Title: Lightweight Extension of the Base R Graphics System | ||
Version: 0.0.5 | ||
Authors@R: | ||
c( | ||
person( | ||
|
@@ -31,8 +31,8 @@ Authors@R: | |
email = "[email protected]" | ||
) | ||
) | ||
Description: Lightweight extension of the base R plot system, with support for | ||
automatic grouping and legend printing, and several other enhancements. | ||
Description: Lightweight extension of the base R graphics system, with support | ||
for automatic legends, facetting, and several other enhancements. | ||
License: GPL (>= 2) | ||
Depends: | ||
R (>= 4.0) | ||
|
@@ -54,9 +54,9 @@ Suggests: | |
Remotes: | ||
etiennebacher/altdoc | ||
Encoding: UTF-8 | ||
RoxygenNote: 7.3.0 | ||
URL: https://grantmcdermott.com/plot2/, | ||
http://grantmcdermott.com/plot2/ | ||
BugReports: https://github.com/grantmcdermott/plot2/issues | ||
RoxygenNote: 7.3.1 | ||
URL: https://grantmcdermott.com/tinyplot/, | ||
http://grantmcdermott.com/tinyplot/ | ||
BugReports: https://github.com/grantmcdermott/tinyplot/issues | ||
VignetteBuilder: knitr | ||
Roxygen: list(markdown = TRUE) |
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 was deleted.
Oops, something went wrong.
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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#' \code{tinyplot-package} | ||
#' | ||
#' @title tinyplot: Lightweight extension of the base R graphics system, with | ||
#' support for automatic legends, facetting, and several other enhancements. | ||
#' | ||
#' @description The goal of **tinyplot** is to provides a lightweight extension | ||
#' of the base R graphics system with various convenience features, | ||
#' particularly for representing groups with your data. For example, the core | ||
#' `tinyplot()` function (alias: `plt()` with no vowels) makes it easy to plot | ||
#' different categories of a dataset in a single function call and highlight | ||
#' these categories (groups) using modern colour palettes. Coincident with | ||
#' this grouping support, `tinyplot()` also produces automatic legends with | ||
#' scope for further customization. While the package offers several other | ||
#' enhancements like facets, it tries as far as possible to be a drop-in | ||
#' replacement for the equivalent base plotting calls. Users should generally | ||
#' be able to swap a valid `plot()` call with `tinyplot()` without any changes | ||
#' to the expected output. | ||
#' | ||
#' @docType package | ||
#' @aliases tinyplot-package NULL | ||
#' @keywords internal | ||
"_PACKAGE" |
Oops, something went wrong.