Browse Source

Rename NEWS to NEWS.md, correct style, and add news for 0.3.0

tags/0.3.0
Maxime Wack 2 years ago
parent
commit
53b5c88b0f
3 changed files with 82 additions and 53 deletions
  1. +1
    -1
      DESCRIPTION
  2. +0
    -52
      NEWS
  3. +81
    -0
      NEWS.md

+ 1
- 1
DESCRIPTION View File

@@ -1,6 +1,6 @@
Package: desctable
Title: Produce Descriptive and Comparative Tables Easily
Version: 0.2.0
Version: 0.3.0
Authors@R: c(person("Maxime", "Wack", email = "maximewack@free.fr", role = c("aut", "cre")),
person("Adrien", "Boukobza", email = "hadrien_b@hotmail.fr", role = c("aut")),
person("Yihui", "Xie", email = "xieyihui@gmail.com", role = c("ctb")))


+ 0
- 52
NEWS View File

@@ -1,52 +0,0 @@
Version 0.2.0

- Add support for purrr::map-like formulas for statistical and test functions
- "conditional" formulas are no longer supported. For example, replace `~ is.normal ~ mean | median` with `~ if (is.normal(.)) mean(.) else median(.)`

Version 0.1.9

- Fix in default options for datatable output to follow DT update
- Fix pander export for R ≥ 4.0.0

Version 0.1.8

- Code cleanup:
- use RStudio style guidelines for all code and docs
- use fewer tidyverse functions internally, drop `purrr` dependancy

Version 0.1.7

- Vignette and README with RStudio style guidelines

Version 0.1.6

- Correct way to re-export `group_by` and `%>%`

Version 0.1.4-5

- Documentation fix for group_by import (dplyr 0.8)
- Correct description for Dates

Version 0.1.3

- Added travis CI to repo
- Added CRAN badge to repo
- Corrected a typo in the README and vignette
- Bugfix for when a statistical function returns a warning AND an error
- Added NEWS file for future releases
- Modified default and auto statistics for less automation
- Added dummy column name for the variable names column, and make dplyr happy
- Enabled character and mixed columns
- Added CRAN mirror downloads badge to repo

Version 0.1.2

- Added a fix for a change in evaluation in rlang

Version 0.1.1

- Added a fix for changing arguments in fisher.test in upstream

Version 0.1.0

Initial release.

+ 81
- 0
NEWS.md View File

@@ -0,0 +1,81 @@
# desctable 0.3.0

#### New features

- NEW API: desctable is now `desc_table`, `desc_tests`, and `desc_output`
- New internal format: desctable uses dataframes with list-columns internally instead of nested lists
- New website with *pkgdown*

#### Bugfix

- Conditional formulas were hard-deprecated in 0.2.0, and have been soft-deprecated.

# desctable 0.2.0

#### New features

- Add support for `purrr::map`-like formulas for statistical and test functions
- Conditional formulas will be deprecated in 1.0. For example, replace `is.normal ~ mean | median` with `~ if (is.normal(.)) mean(.) else median(.)`

# desctable 0.1.9

#### Bugfixes

- Fix in default options for datatable output following DT update
- Fix pander export for R ≥ 4.0.0

# desctable 0.1.8

#### Code cleanup

- Use RStudio style guidelines for all code and docs
- Use fewer tidyverse functions internally, drop `purrr` dependancy

# desctable 0.1.7

#### Code cleanup

- Correct vignette and README with RStudio style guidelines

# desctable 0.1.6

#### Bugfixes

- Correct way to re-export `group_by` and `%>%`

# desctable 0.1.4-5

#### Bugfixes

- Documentation fix for group_by import (dplyr 0.8)
- Correct description for Dates

# desctable 0.1.3

#### CRAN publication update

- Add travis CI to repo
- Add CRAN badge to repo
- Correct a typo in the README and vignette
- Bugfix for when a statistical function returns a warning AND an error
- Add NEWS file for future releases
- Modify default and auto statistics for less automation
- Add dummy column name for the variable names column, and make dplyr happy
- Enable character and mixed columns
- Add CRAN mirror downloads badge to repo

# desctable 0.1.2

#### Bugfix

- Fix for a change in evaluation in rlang

# desctable 0.1.1

#### Bugfix

- Fix for changing arguments in fisher.test in upstream

# desctable 0.1.0

- Initial release.

Loading…
Cancel
Save