0

I have a basic SPSS Modeller flow ...

enter image description here

When I try to run the 'Value Bin' node I get the error:

Error: Output field 'Value Bin' is incomplete

enter image description here

Value Bin is defined as this:

enter image description here

I shouldn't have any missing values:

enter image description here

enter image description here

What does this error message actually mean?

Sorry for all the screenshots.


Update

I updated the Derive node to a binning node and still the same issue:

enter image description here

Chris Snow
  • 23,813
  • 35
  • 144
  • 309

1 Answers1

1

In your Derive node, under Measurement, you need to change Range to Set.

By definition the field is Nominal so to declare it also as a Range, i.e. Continuous, confuses things. I'm not sure why the node even gives you that option but maybe it makes sense somewhere.

The error 'Output field X is incomplete' means that the type of X is not fully specified, and in this case it's because it can't make sense of something that is both nominal and continuous.

Rob Duncan
  • 36
  • 3
  • Changing to a SET fixed the issue. Strangely, I also tried a BIN node instead of Derive, but that surprisingly didn't work. – Chris Snow Apr 20 '18 at 13:17
  • That surprises me too. You can usually resolve such problems by adding a Type node immediately before the modeling node; you don't need to change any settings, but it will make sure that any 'incomplete' types are fully resolved before the algorithm is invoked. – Rob Duncan Apr 20 '18 at 16:40