Skip to content

Commit

Permalink
New Metrics R package version 0.1.3 fixes CRAN issues
Browse files Browse the repository at this point in the history
  • Loading branch information
ledell committed Apr 26, 2017
1 parent 9a637ae commit 98a4cec
Show file tree
Hide file tree
Showing 28 changed files with 509 additions and 312 deletions.
7 changes: 7 additions & 0 deletions R/.Rbuildignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
install_r_packages.r
run_r_tests.sh
^.*\.Rproj$
^\.Rproj\.user$
^README.*$
.gitlab-ci.yml
.travis.yml
18 changes: 10 additions & 8 deletions R/DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
Package: Metrics
Title: Evaluation metrics for machine learning
Description: Metrics is a set of evaluation metrics
that is commonly used in supervised machine
learning.
URL: https://github.com/benhamner/Metrics/

This comment has been minimized.

Copy link
@ledell

ledell Oct 2, 2017

Author Owner

The URL should be updated to the URL of the fork for whomever takes this package over.

Version: 0.1.1
Version: 0.1.3
Title: Evaluation Metrics for Machine Learning
Description: A set of evaluation metrics that are commonly used in supervised machine learning.
Authors@R: c(
person("Ben", "Hamner", role = c("aut", "cre", "cph"), email = "ben@benhamner.com"),
person("Erin", "LeDell", role = c("ctb"), email = "oss@ledell.org"))
URL: https://github.com/benhamner/Metrics/tree/master/R

This comment has been minimized.

Copy link
@ledell

ledell Oct 2, 2017

Author Owner

The URL should be updated to the URL of the fork for whomever takes this package over.

BugReports: https://github.com/benhamner/Metrics/issues

This comment has been minimized.

Copy link
@ledell

ledell Oct 2, 2017

Author Owner

The URL should be updated to the URL of the fork for whomever takes this package over.

Maintainer: Ben Hamner <ben@benhamner.com>
Author: Ben Hamner <ben@benhamner.com>
License: BSD
License: BSD_3_clause + file LICENSE
Collate:
'metrics.r'
RoxygenNote: 6.0.1
3 changes: 3 additions & 0 deletions R/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
YEAR: 2012-2017
COPYRIGHT HOLDER: Ben Hamner
ORGANIZATION: copyright holder
14 changes: 8 additions & 6 deletions R/NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
# Generated by roxygen2: do not edit by hand

export(MeanQuadraticWeightedKappa)
export(ScoreQuadraticWeightedKappa)
export(ae)
export(apk)
export(auc)
export(ce)
export(f1)
export(ll)
export(logLoss)
export(mae)
export(mapk)
export(MeanQuadraticWeightedKappa)
export(mse)
export(msle)
export(rae)
export(rmse)
export(rmsle)
export(ScoreQuadraticWeightedKappa)
export(rrse)
export(rse)
export(se)
export(sle)
export(rse)
export(rrse)
export(rae)
export(f1)
16 changes: 16 additions & 0 deletions R/NEWS
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
Version 0.1.3 (2017-04-25)
------------------------------------------------------------------------------

* fixed documentation bugs
* fixed CRAN check errors
* re-generated documentation and NAMESPACE using Roxygen2
* added examples for all the functions
* added a .Rbuildignore for ignoring the top level scripts
* added Erin LeDell as a contributor

Version 0.1.2 (2017-04-21)
------------------------------------------------------------------------------

* package was migrated to “ORPHANED” status on CRAN
* version number bumped automatically by CRAN

Version 0.1.1 (2012-06-19)
------------------------------------------------------------------------------

Expand Down
Loading

0 comments on commit 98a4cec

Please sign in to comment.