Skip to content

Commit

Permalink
Adds labels and descriptions in longitudinal transformer
Browse files Browse the repository at this point in the history
  • Loading branch information
mollyk committed Sep 18, 2023
1 parent b77c4ae commit 3aafd75
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions exareme2/algorithms/longitudinal_transformer.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,12 @@ def get_specification(cls):
return TransformerSpecification(
name=cls.get_transformer_name(),
desc="longitudinal_transform",
label="longitudinal_transform",
label="Longitudinal Transformer",
enabled=True,
parameters={
"visit1": ParameterSpecification(
label="visit1",
desc="visit1",
label="1st Visit",
desc="The data of a certain subject's measurements during a specific visit on a specific date.",
types=[ParameterType.TEXT],
notblank=True,
multiple=False,
Expand All @@ -92,8 +92,8 @@ def get_specification(cls):
),
),
"visit2": ParameterSpecification(
label="visit2",
desc="visit2",
label="2nd Visit",
desc="The data of the same subject's measurements during a specific visit on a specific but different, later date.",
types=[ParameterType.TEXT],
notblank=True,
multiple=False,
Expand All @@ -102,8 +102,8 @@ def get_specification(cls):
),
),
"strategies": ParameterSpecification(
label="strategies",
desc="strategies",
label="Strategies",
desc="Select a strategy for each variable.",
types=[ParameterType.DICT],
notblank=True,
multiple=False,
Expand Down

0 comments on commit 3aafd75

Please sign in to comment.