Skip to content

Commit

Permalink
Add defaults
Browse files Browse the repository at this point in the history
  • Loading branch information
teobucci committed Apr 13, 2024
1 parent 207e586 commit 9930bbe
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions hawk/processes/wps_causal.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,12 +39,14 @@ def __init__(self):
"Target Column Name",
data_type="string",
abstract="Please enter the case-specific name of the target variable in the dataframe.",
default="target",
),
LiteralInput(
"pcmci_test_choice",
"PCMCI Test Choice",
data_type="string",
abstract="Choose the independence test to be used in PCMCI.",
default="ParCorr",
allowed_values=[
"ParCorr",
"CMIknn",
Expand All @@ -55,6 +57,7 @@ def __init__(self):
"PCMCI Max Lag",
data_type="string",
abstract="Choose the maximum lag to test used in PCMCI.",
default="1",
allowed_values=[
"0",
"1",
Expand All @@ -69,6 +72,7 @@ def __init__(self):
"TEFS Direction",
data_type="string",
abstract="Choose the direction of the TEFS algorithm.",
default="both",
allowed_values=[
"forward",
"backward",
Expand All @@ -87,6 +91,7 @@ def __init__(self):
"TEFS Max Lag Features",
data_type="string",
abstract="Choose the maximum lag of the features in the TEFS algorithm.",
default="1",
allowed_values=[
"no_lag",
"1",
Expand All @@ -101,6 +106,7 @@ def __init__(self):
"TEFS Max Lag Target",
data_type="string",
abstract="Choose the maximum lag of the target in the TEFS algorithm.",
default="1",
allowed_values=[
"1",
"2",
Expand Down

0 comments on commit 9930bbe

Please sign in to comment.