Skip to content

Commit

Permalink
Release 0 1 3 (#1)
Browse files Browse the repository at this point in the history
* 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
wangyuchen authored Feb 23, 2017
1 parent cfd1298 commit 8ca4e38
Show file tree
Hide file tree
Showing 5 changed files with 40 additions and 11 deletions.
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
^\.Rproj\.user$
^cran-comments\.md$
^\.travis\.yml$
^examples/
10 changes: 5 additions & 5 deletions DESCRIPTION
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 = "ycwang0712@gmail.com",
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
Expand Down
9 changes: 9 additions & 0 deletions NEWS.md
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.


30 changes: 24 additions & 6 deletions cran-comments.md
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`.
1 change: 1 addition & 0 deletions extdplyr.Rproj
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,5 @@ StripTrailingWhitespace: Yes
BuildType: Package
PackageUseDevtools: Yes
PackageInstallArgs: --no-multiarch --with-keep.source
PackageCheckArgs: --as-cran
PackageRoxygenize: rd,collate,namespace

0 comments on commit 8ca4e38

Please sign in to comment.