We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent de04f38 commit de5d86fCopy full SHA for de5d86f
ChangeLog
@@ -1,3 +1,7 @@
1
+2023-04-13 Russell Almond <ralmond@pei>
2
+
3
+ * R/Experience.R ("NodeExperience<-"): Fixed issue with checking for NAs.
4
5
2023-04-12 Russell Almond <ralmond@pei>
6
7
* R/Networks.R (NetworkSession): Added this function as it seems to be needed.
R/Experience.R
@@ -30,7 +30,7 @@ NodeExperience <- function (node) {
30
if (!is.numeric(value)) {
31
stop("Value must be numeric")
32
}
33
- if (any(is.na(value) || any(value <= 0))) {
+ if (any(is.na(value)) || any(value <= 0)) {
34
stop("Values must be positive numbers. NAs are not allowed.")
35
36
dv <- dim(value)
0 commit comments