Skip to content

Commit

Permalink
Fixes for CRAN submission
Browse files Browse the repository at this point in the history
  • Loading branch information
dgrtwo committed May 5, 2015
1 parent 2ea42fb commit e6898bb
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 13 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
@@ -1,8 +1,8 @@
Package: broom
Type: Package
Title: Convert Statistical Analysis Objects into Tidy Data Frames
Version: 0.3.6
Date: 2015-02-17
Version: 0.3.7
Date: 2015-05-05
Authors@R: c(
person("David", "Robinson", email = "admiral.david@gmail.com", role = c("aut", "cre")),
person("Matthieu", "Gomez", email = "mattg@princeton.edu", role = "ctb"),
Expand Down
2 changes: 1 addition & 1 deletion LICENSE
@@ -1,2 +1,2 @@
YEAR: 2014
YEAR: 2015
COPYRIGHT HOLDER: David Robinson
4 changes: 2 additions & 2 deletions NEWS.md
Expand Up @@ -7,9 +7,9 @@ broom 0.3.6.9000
* Added `tidy` and `glance` for "biglm" and "bigglm" objects from the biglm package.
* Fixed bug in `tidy.coxph` when one-row matrices are returned
* Added `tidy.power.htest`
* Add `tidy` and `glance` for `summaryDefault` objects
* Added `tidy` and `glance` for `summaryDefault` objects
* Added tidiers for "lme" (linear mixed effects models) from the nlme package
* Add `tidy` and `glance` for `multinom` objects from the nnet package.
* Added `tidy` and `glance` for `multinom` objects from the nnet package.

broom 0.3.6
-----------
Expand Down
2 changes: 1 addition & 1 deletion R/survival_tidiers.R
Expand Up @@ -21,7 +21,7 @@
#'
#' @examples
#'
#' if (require("survival", quietly)) {
#' if (require("survival", quietly = TRUE)) {
#' afit <- aareg(Surv(time, status) ~ age + sex + ph.ecog, data=lung,
#' dfbeta=TRUE)
#' summary(afit)
Expand Down
27 changes: 21 additions & 6 deletions cran-comments.md
@@ -1,16 +1,31 @@
broom 0.3.6
broom 0.3.7
-----------

This is a resubmission:
## Changes

* Changed Title field to title case ("Into" to "into")
* Added tidiers for "plm" (panel linear model) objects from the plm package.
* Added `tidy.coeftest` for coeftest objects from the lmtest package.
* Set up `tidy.lm` to work with "mlm" (multiple linear model) objects (those with multiple response columns).
* Added `tidy` and `glance` for "biglm" and "bigglm" objects from the biglm package.
* Fixed bug in `tidy.coxph` when one-row matrices are returned
* Added `tidy.power.htest`
* Added `tidy` and `glance` for `summaryDefault` objects
* Added tidiers for "lme" (linear mixed effects models) from the nlme package
* Added `tidy` and `glance` for `multinom` objects from the nnet package.

## Test environments
* local OS X install, R 3.1.2
* local OS X install, R 3.2.0
* win-builder (devel and release)

## R CMD check results
There were no ERRORs, WARNINGs or NOTEs.
There were no ERRORs or WARNINGs. There was one NOTE:

Possibly mis-spelled words in DESCRIPTION:
dplyr (17:21)
ggplot (17:38)
tidyr (17:28)

These are the names of packages and are correctly spelled.

## Reverse dependencies
Broom has no reverse dependencies.
Broom has one reverse dependency, radiant. I ran R CMD check on radiant 0.1.83 with broom 0.3.7 and it showed no ERRORs, WARNINGs, or NOTEs.
2 changes: 1 addition & 1 deletion man/aareg_tidiers.Rd
Expand Up @@ -38,7 +38,7 @@ the columns
These tidy the coefficients of Aalen additive regression objects.
}
\examples{
if (require("survival", quietly)) {
if (require("survival", quietly = TRUE)) {
afit <- aareg(Surv(time, status) ~ age + sex + ph.ecog, data=lung,
dfbeta=TRUE)
summary(afit)
Expand Down

0 comments on commit e6898bb

Please sign in to comment.