This is an automated email from the ASF dual-hosted git repository.
baunsgaard pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/systemds.git
The following commit(s) were added to refs/heads/main by this push:
new dd660d53d4 [MINOR] syntax fix nRow vs nrow
dd660d53d4 is described below
commit dd660d53d4ffe53ebd20c8ac23be8dc8f90bfc80
Author: baunsgaard <[email protected]>
AuthorDate: Fri Jun 10 16:51:21 2022 +0200
[MINOR] syntax fix nRow vs nrow
---
scripts/builtin/WoEApply.dml | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/scripts/builtin/WoEApply.dml b/scripts/builtin/WoEApply.dml
index 6f86a266d3..09227b2e1f 100644
--- a/scripts/builtin/WoEApply.dml
+++ b/scripts/builtin/WoEApply.dml
@@ -35,7 +35,7 @@
m_WoEApply = function(Matrix[Double] X, Matrix[Double] Y, Matrix[Double]
entropyMatrix)
return (Matrix[Double] F) {
- F = matrix(1, nRow(X), nCol(X)) # allocate dense output matrix
+ F = matrix(1, nrow(X), ncol(X)) # allocate dense output matrix
for(i in 1:ncol(X))
{
if(sum(abs(entropyMatrix[i])) > 0)