Skip to content

Commit

Permalink
version 0.2.1 as on CRAN
Browse files Browse the repository at this point in the history
  • Loading branch information
agosiewska committed May 13, 2018
1 parent e9bc930 commit 18f3949
Show file tree
Hide file tree
Showing 9 changed files with 10 additions and 172 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: auditor
Title: Model Audit - Verification, Validation, and Error Analysis
Version: 0.2.0
Version: 0.2.1
Authors@R: c(
person("Alicja", "Gosiewska", , "[email protected]", role = c("aut", "cre")),
person("Przemyslaw", "Biecek", role = c("aut", "ths"))
Expand Down
50 changes: 3 additions & 47 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,47 +1,3 @@
# version 0.2.0 - released on CRAN
## 07/05.2019

- new plot functions: `plotLift()`, `plotCumulativeGain()`, `plotTwoSidedECDF()`, `plotModelCorrelation()`, `plotResidualDensity()`, `plotModelPCA()`, plotPrediction()`, plotModelRanking()`
- new score functions: `scoreROC()`, `scoreREC()`, `scoreRROC()`, `scoreMSE()`, `scoreRMSE()`, `scoreMAE()`
- function names changes:
- `plotResiduals()` -> `plotResidual()`
- `plotCook()` -> `plotCooksDistance()`
- `scoreCook()` -> `scoreCooksDistance()`
- `variable = NULL` parameter in `scoreDW()`, `scoreRuns()`, plotAutocorrelation()`, `plotACF()` causes the residuals to be not sorted by any variable
- densities in `plotResidualDensity()` may be now separated by variable values
- for function `score()` parameter `score` is renamed into `type`
- new examples

# version 0.1.1.0000
## 09/03/2018

- function `audit()` has new arguments: `predict.function` and `residual.function`,
- plots are now plotted with `theme_light()`,
- functions for ROC curves (`plotROC`) and their extensions for regression (`plotRROC`, `plotREC`),
- Cheatsheets were added to README.

# version 0.1.0.0000
## 18/02/2018

Package was rebuilded
- Functions `auditor`, `plot_cooks_dist`, `plot_vif`, `plotAutocorr`, `plotTestGQ`, `testDW`, `testGQ`, `testRuns` were deleted
- New functions: `audit`, `plotScaleLocation`, `plotAutocorrelation`, `plotCook`, `plotResiduals`, `scoreGQ`, `scoreDW`, `scoreRuns`, `scoreCook`, `scoreHalfNormal`.
- New vignette: *Introduction into model audit*
- *The half-normal plots* vignette was updated
- New tests

# version 0.0.2.0000
## 23/11/2017

- cooks distances, hat values, and vif added to the $ModelAudit$ object
- `plot_cooks_dist` function
- `plot_vif` function

# version 0.0.1.0000
## 9/11/2017

- Heteroscedasticity of residuals:
- `test_gq` and `plot_test_gq` functions
- Autocorrelation of residuals
- `test_dw`, `test_run`, `plot_autocorr` fucntions
- Reference Manual generated by pkgdown
# auditor 0.2.1
----------------------------------------------------------------
* In the source code, function `isFALSE()` is replaced by ` == FALSE` to make package compatible with R versions older than 3.5.
2 changes: 1 addition & 1 deletion R/miscellaneous_functions.R
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ orderResidualsDF <- function(object, variable, is.df = FALSE){

tmpDF$values <- values
tmpDF <- tmpDF[order(values), ]
if(is.df==FALSE){
if(is.df == FALSE){
return(tmpDF$residuals)
} else {
return(tmpDF)
Expand Down
4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,12 +14,10 @@
```
devtools::install_github("mi2-warsaw/auditor")
```

#### or from CRAN
Version on CRAN works for R >=3.5, while version on GitHibu works for R>=3.0. This will be changed in the next update.

```{r}
install.packages("DALEX")
install.packages("auditor")
```

### [Reference Manual](https://mi2-warsaw.github.io/auditor/)
Expand Down
3 changes: 1 addition & 2 deletions docs/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

113 changes: 0 additions & 113 deletions docs/news/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions docs/reference/audit.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/reference/index.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 1 addition & 2 deletions docs/reference/plot.ModelAudit.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 18f3949

Please sign in to comment.