diff --git a/knime_extension/src/nodes/spatialstatistics.py b/knime_extension/src/nodes/spatialstatistics.py index 7977cad8..418b65dc 100644 --- a/knime_extension/src/nodes/spatialstatistics.py +++ b/knime_extension/src/nodes/spatialstatistics.py @@ -1091,7 +1091,8 @@ def execute(self, exec_context: knext.ExecutionContext, input_1, input_2): ) @knext.output_table( name="Output Table", - description="Output table results of Bivariate Global Moran’s I", + description="Output table results of Bivariate Global Moran’s I" + + __global_statistics_output_table_description, ) # @knext.output_binary( # name="output model", @@ -1100,11 +1101,12 @@ def execute(self, exec_context: knext.ExecutionContext, input_1, input_2): # ) @knext.output_view( name="output view", - description="Output view of Bivariate Global Moran’s I", + description="Output view of Bivariate Global Moran’s I" + + __global_statistics_interactive_view_description, ) class BivariateGlobalMoran: """ - Bivariate Global Moran’s I + Bivariate Global Moran’s I. """ # input parameters @@ -1119,15 +1121,15 @@ class BivariateGlobalMoran: id_col = get_id_col_parameter() Field_col1 = knext.ColumnParameter( - "Field column 1", - "The column containing the field to use for the calculation of Bivariate Global Moran’s I.", + "Variable column 1", + "The column containing the variable to use for the calculation of Bivariate Global Moran’s I.", column_filter=knut.is_numeric, include_none_column=False, ) Field_col2 = knext.ColumnParameter( - "Field column 2", - "The column containing the field to use for the calculation of Bivariate Global Moran’s I.", + "Variable column 2", + "The column containing the variable to use for the calculation of Bivariate Global Moran’s I.", column_filter=knut.is_numeric, include_none_column=False, ) @@ -1201,7 +1203,9 @@ def execute(self, exec_context: knext.ExecutionContext, input_1, input_2): ) @knext.output_table( name="Output Table", - description="Output table results of Bivariate Local Moran Statistics", + description="Output table results of Bivariate Local Moran Statistics" + + __local_statistics_output_table_description + + __spots, ) # @knext.output_binary( # name="output model", @@ -1229,15 +1233,15 @@ class BivariateLocalMoran: id_col = get_id_col_parameter() Field_col1 = knext.ColumnParameter( - "Field column 1", - "The column containing the field to use for the calculation of Bivariate Local Moran Statistics.", + "Variable column 1", + "The column containing the variable to use for the calculation of Bivariate Local Moran Statistics.", column_filter=knut.is_numeric, include_none_column=False, ) Field_col2 = knext.ColumnParameter( - "Field column 2", - "The column containing the field to use for the calculation of Bivariate Local Moran Statistics.", + "Variable column 2", + "The column containing the variable to use for the calculation of Bivariate Local Moran Statistics.", column_filter=knut.is_numeric, include_none_column=False, )