SPSS modeler Extension Transform - Python
问题 I am new to SPSS modeler. I am triyng to create a simple data transformation with python on a dummy created data. The dummy data is created as exected. (see at the bottom) I try to access and modify the data with python using the example that i found on IBM website import spss.pyspark.runtime from pyspark.sql.types import * cxt = spss.pyspark.runtime.getContext() if cxt.isComputeDataModelOnly(): _schema = cxt.getSparkInputSchema() cxt.setSparkOutputSchema(_schema) else: _structType = cxt