Skip to content

Commit 8c9f3b0

Browse files
committed
start 'R/analyse-users.R'
1 parent bcd75d8 commit 8c9f3b0

File tree

3 files changed

+16
-2
lines changed

3 files changed

+16
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: repometrics
22
Title: Metrics for Your Code Repository
3-
Version: 0.1.3.020
3+
Version: 0.1.3.021
44
Authors@R:
55
person("Mark", "Padgham", , "mark.padgham@email.com", role = c("aut", "cre"),
66
comment = c(ORCID = "0000-0003-2172-5265"))

R/analyse-users.R

+14
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
1+
#' Construct user-by-user square matrices of strengths of relation between
2+
#' users.
3+
#'
4+
#' @param users Result of `lapply(logins, repometrics_data_user)`.
5+
#' @noRd
6+
user_relation_matrices <- function (users) {
7+
8+
9+
}
10+
11+
empty_user_mat <- function (users) {
12+
n <- length (users)
13+
matrix (NA_real, dim = c (n, n))
14+
}

codemeta.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"codeRepository": "https://github.com/ropensci-review-tools/repometrics",
99
"issueTracker": "https://github.com/ropensci-review-tools/repometrics/issues",
1010
"license": "https://spdx.org/licenses/GPL-3.0",
11-
"version": "0.1.3.020",
11+
"version": "0.1.3.021",
1212
"programmingLanguage": {
1313
"@type": "ComputerLanguage",
1414
"name": "R",

0 commit comments

Comments
 (0)