Skip to content

Commit 5ebdf9b

Browse files
committed
update version, add codemeta
1 parent 635c077 commit 5ebdf9b

File tree

4 files changed

+109
-1
lines changed

4 files changed

+109
-1
lines changed

.Rbuildignore

+1
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,4 @@
66
^LICENSE\.md$
77
^README\.md$
88
^README\.Rmd$
9+
^codemeta\.json$

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: confusionMatrix
22
Type: Package
33
Title: Confusion Matrix
4-
Version: 0.3.0
4+
Version: 0.3.1
55
Authors@R: person("Michael", "Clark", role = c("aut", "cre"), email = "micl@umich.edu")
66
Maintainer: Michael Clark <micl@umich.edu>
77
Description: Given predictions and a target variable, provide numerous statistics from the resulting confusion matrix.

NEWS.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
# confusionMatrix 0.3.1
2+
3+
* Add ability to provide output in longer form
4+
15
# confusionMatrix 0.3.0
26

37
* Add various statistics, add documentation, cleanup code.

codemeta.json

+103
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,103 @@
1+
{
2+
"@context": ["https://doi.org/10.5063/schema/codemeta-2.0", "http://schema.org"],
3+
"@type": "SoftwareSourceCode",
4+
"identifier": "confusionMatrix",
5+
"description": "Given predictions and a target variable, provide numerous statistics from the resulting confusion matrix.",
6+
"name": "confusionMatrix: Confusion Matrix",
7+
"codeRepository": "https://github.com/m-clark/confusionMatrix",
8+
"issueTracker": "https://github.com/m-clark/confusionMatrix/issues",
9+
"license": "https://spdx.org/licenses/MIT",
10+
"version": "0.3.1",
11+
"programmingLanguage": {
12+
"@type": "ComputerLanguage",
13+
"name": "R",
14+
"version": "3.6.1",
15+
"url": "https://r-project.org"
16+
},
17+
"runtimePlatform": "R version 3.6.1 (2019-07-05)",
18+
"author": [
19+
{
20+
"@type": "Person",
21+
"givenName": "Michael",
22+
"familyName": "Clark",
23+
"email": "micl@umich.edu"
24+
}
25+
],
26+
"contributor": {},
27+
"copyrightHolder": {},
28+
"funder": {},
29+
"maintainer": [
30+
{
31+
"@type": "Person",
32+
"givenName": "Michael",
33+
"familyName": "Clark",
34+
"email": "micl@umich.edu"
35+
}
36+
],
37+
"softwareSuggestions": [
38+
{
39+
"@type": "SoftwareApplication",
40+
"identifier": "testthat",
41+
"name": "testthat",
42+
"version": ">= 2.1.0",
43+
"provider": {
44+
"@id": "https://cran.r-project.org",
45+
"@type": "Organization",
46+
"name": "Comprehensive R Archive Network (CRAN)",
47+
"url": "https://cran.r-project.org"
48+
},
49+
"sameAs": "https://CRAN.R-project.org/package=testthat"
50+
},
51+
{
52+
"@type": "SoftwareApplication",
53+
"identifier": "covr",
54+
"name": "covr",
55+
"provider": {
56+
"@id": "https://cran.r-project.org",
57+
"@type": "Organization",
58+
"name": "Comprehensive R Archive Network (CRAN)",
59+
"url": "https://cran.r-project.org"
60+
},
61+
"sameAs": "https://CRAN.R-project.org/package=covr"
62+
},
63+
{
64+
"@type": "SoftwareApplication",
65+
"identifier": "tidyr",
66+
"name": "tidyr",
67+
"version": ">= 1.0.0",
68+
"provider": {
69+
"@id": "https://cran.r-project.org",
70+
"@type": "Organization",
71+
"name": "Comprehensive R Archive Network (CRAN)",
72+
"url": "https://cran.r-project.org"
73+
},
74+
"sameAs": "https://CRAN.R-project.org/package=tidyr"
75+
}
76+
],
77+
"softwareRequirements": [
78+
{
79+
"@type": "SoftwareApplication",
80+
"identifier": "R",
81+
"name": "R",
82+
"version": ">= 3.5.0"
83+
},
84+
{
85+
"@type": "SoftwareApplication",
86+
"identifier": "dplyr",
87+
"name": "dplyr",
88+
"provider": {
89+
"@id": "https://cran.r-project.org",
90+
"@type": "Organization",
91+
"name": "Comprehensive R Archive Network (CRAN)",
92+
"url": "https://cran.r-project.org"
93+
},
94+
"sameAs": "https://CRAN.R-project.org/package=dplyr"
95+
}
96+
],
97+
"releaseNotes": "https://github.com/m-clark/confusionMatrix/blob/master/NEWS.md",
98+
"readme": "https://github.com/m-clark/confusionMatrix/blob/master/README.md",
99+
"fileSize": "20.204KB",
100+
"contIntegration": ["https://travis-ci.org/m-clark/confusionMatrix", "https://ci.appveyor.com/project/m-clark/confusionMatrix", "https://codecov.io/gh/m-clark/confusionMatrix?branch=master"],
101+
"developmentStatus": "https://www.tidyverse.org/lifecycle/#experimental",
102+
"keywords": ["confusion-matrix", "sensitivity", "specificity", "positive-predictive-value", "negative-predictive-value", "precision-recall", "f1-score", "dice-coefficient", "true-positive-rate", "true-negative-rate", "false-positive-rate", "false-negative-rate", "balanced-accuracy", "false-discovery-rate", "false-omission-rate", "fallout"]
103+
}

0 commit comments

Comments
 (0)