-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Fix according to CRAN comments * Added NEWS.md * Fixed non-ascii character in CRAN comments * R CMD CHECK --as-cran * Changed .Rbuildignore format according to packrat
- Loading branch information
1 parent
cfd1298
commit 8ca4e38
Showing
5 changed files
with
40 additions
and
11 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 |
---|---|---|
|
@@ -2,3 +2,4 @@ | |
^\.Rproj\.user$ | ||
^cran-comments\.md$ | ||
^\.travis\.yml$ | ||
^examples/ |
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: extdplyr | ||
Type: Package | ||
Title: Data Manipulation Extension based on dplyr and tidyr | ||
Title: Data Manipulation Extension Based on 'Dplyr' and 'Tidyr' | ||
Version: 0.1.3 | ||
Authors@R: person("Yuchen", "Wang", email = "[email protected]", | ||
role = c("aut", "cre")) | ||
Description: If `dplyr` is a grammar for data manipulation, `extdplyr` is like | ||
a short paragraph written in `dplyr`. `extdplyr` extends `dplyr` and | ||
`tidyr` verbs to some common "routines" that manipulate data sets. It uses | ||
the same interface and preserves all the features from `dplyr`, has good | ||
Description: If 'dplyr' is a grammar for data manipulation, 'extdplyr' is like | ||
a short paragraph written in 'dplyr'. 'extdplyr' extends 'dplyr' and | ||
'tidyr' verbs to some common "routines" that manipulate data sets. It uses | ||
the same interface and preserves all the features from 'dplyr', has good | ||
performance, and supports various data sources. | ||
License: MIT + file LICENSE | ||
Encoding: UTF-8 | ||
|
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,9 @@ | ||
# extdplyr 0.1.3 | ||
|
||
* Added a `NEWS.md` file to track changes to the package. | ||
* Added 2 major data manipulation routines, `pct_routine` and `grp_routine`. | ||
* Lower level functions are provided to support the "routines", like `tally_pct` and `ind_to_char`. | ||
* Added utility function `check_missing`. | ||
* Provided NSE and SE versions for all of the exported functions. | ||
|
||
|
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,14 +1,32 @@ | ||
## Test environments | ||
* local OS X install, R 3.3.2 | ||
* ubuntu 12.04 (on travis-ci), R 3.3.2 | ||
* win-builder (release) | ||
* win-builder (release and devel) | ||
|
||
## R CMD check results | ||
There were no ERRORs or WARNINGs. | ||
There were no ERRORs or WARNINGs. | ||
|
||
There was 1 NOTE: | ||
win-builder check has 1 note: | ||
|
||
Non-standard file/directory found at top level: | ||
‘examples’ | ||
``` | ||
New submission | ||
``` | ||
|
||
`examples/` are used to store long scripts used in documents. | ||
|
||
Fixed 2 notes in previous submission. | ||
|
||
``` | ||
Possibly mis-spelled words in DESCRIPTION: | ||
dplyr (3:45, 7:18, 8:35, 8:63, 10:61) | ||
extdplyr (7:62, 8:44) | ||
tidyr (3:55, 9:6) | ||
``` | ||
|
||
Fixed description file for title case and single quotes. | ||
|
||
``` | ||
Non-standard file/directory found at top level: | ||
'examples' | ||
``` | ||
|
||
This is fixed by adding the folder to `.Rbuildignore`. |
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