0

I'm trying to build an analytic model with SPSS Modeler 16.0 and there is some parts that are easy to do with Python. Now my question is what are the limits for using python or jython scripting in SPSS ? Can I import all the libraries that I want as well as in a classic python program ?

eli-k
  • 10,898
  • 11
  • 40
  • 44
deltascience
  • 3,321
  • 5
  • 42
  • 71

1 Answers1

0

Modeler scripting uses Jython, not standard Python, but you should be able to load any library that is compatible with Jython.

SPSS Statistics uses standard Python 2.7

JKP
  • 5,419
  • 13
  • 5
  • thanks for the reply @JKP but in `Jython` we can't load the libraries like `Numpy` or `Scipy` am I wrong ? – deltascience Mar 25 '15 at 10:01
  • Those libraries are built for standard Python and will not work with Jython, inside Modeler or outside. – JKP Mar 26 '15 at 12:16