Skip to content

Commit

Permalink
Updated algorithm store json
Browse files Browse the repository at this point in the history
  • Loading branch information
bartvanb committed Mar 29, 2024
1 parent fbfe6e6 commit a1d6dd0
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions algorithm_store.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "Contingency table",
"image": "harbor2.vantage6.ai/algorithms/v6-crosstab-py:v4",
"image": "harbor2.vantage6.ai/algorithms/crosstab:v4",
"vantage6_version": "4.3",
"partitioning": "horizontal",
"functions": [
Expand All @@ -10,6 +10,16 @@
"type": "central",
"databases": [],
"arguments": [
{
"name": "results_col",
"type": "column",
"description": "Column to count. Will be used as the columns in the contingency table"
},
{
"name": "group_cols",
"type": "list[column]",
"description": "One or more columns to group by. Will be used as the rows in the contingency table"
},
{
"name": "organizations_to_include",
"type": "organizations",
Expand All @@ -23,10 +33,21 @@
"type": "federated",
"databases": [
{
"name": "Database 1"
"name": "Database"
}
],
"arguments": []
"arguments": [
{
"name": "results_col",
"type": "column",
"description": "Column to count. Will be used as the columns in the contingency table"
},
{
"name": "group_cols",
"type": "list[column]",
"description": "One or more columns to group by. Will be used as the rows in the contingency table"
}
]
}
]
}

0 comments on commit a1d6dd0

Please sign in to comment.