Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
xPAGCOE authored Feb 5, 2024
1 parent bf02dab commit 665c9e4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
4 changes: 2 additions & 2 deletions SAC DataFrame/sacdataframe.js
Original file line number Diff line number Diff line change
Expand Up @@ -269,9 +269,9 @@ var getScriptPromisify = (src) => {
return this.add(dataframe, other, option);
}

addValue(dataframe, value, option) {
addValue(dataframe, value) {

return this.add(dataframe, value, option);
return this.add(dataframe, value);
}

addValues(dataframe, values, option) {
Expand Down
5 changes: 2 additions & 3 deletions SAC DataFrame/sacdataframe.json
Original file line number Diff line number Diff line change
Expand Up @@ -99,14 +99,13 @@
"returnType": "Selection",
"description": "Get Addition of scalar value element-wise (binary operator add)",
"parameters": [ {"name": "dataframe", "type": "Selection", "description": "Input DafaFrame"},
{"name": "other", "type": "number", "description": "Value to add with"},
{"name": "option", "type": "Selection", "description": "{axis: 0 for row, 1 for column, inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false}"} ]
{"name": "value", "type": "number", "description": "Value to add with"} ]
},
"addValues": {
"returnType": "Selection",
"description": "Get Addition of array values element-wise (binary operator add)",
"parameters": [ {"name": "dataframe", "type": "Selection", "description": "Input DafaFrame"},
{"name": "other", "type": "number[]", "description": "Values to add with"},
{"name": "values", "type": "number[]", "description": "Values to add with"},
{"name": "option", "type": "Selection", "description": "{axis: 0 for row, 1 for column, inplace: Boolean indicating whether to perform the operation inplace or not. Defaults to false}"} ]
},
"appendRow": {
Expand Down

0 comments on commit 665c9e4

Please sign in to comment.