Hey, can someone please help me with this issue. I am using Mac SPSS v25 and want to do propensity matched scoring but I am getting the following error. Can someone please guide. Thanks a lot
* Propensity Score Matching.
begin program.
import spss, random, spssaux, codecs
try:
import FUZZY
except:
print "This procedure requires the FUZZY extension command which is not installed."
parts = [int(i) for i in FUZZY.__version__.split(".")]
if parts < [1,3,0]:
raise EnvironmentError("This procedure requires version 1.3.0 or later of FUZZY")
ds = spss.ActiveDataset()
if ds =="*":
ds = "D" + str(random.random())
spss.Submit("DATASET NAME " + ds)
ds = codecs.encode(ds) # must use code page rep here
matchgroup = "M" + str(random.random()) #temporary variable
tempdsname = "D" + str(random.random())
lrcmd = spssaux.u(r"""LOGISTIC REGRESSION VARIABLES PPM
/METHOD=ENTER firstHB SecondHB OtherSecondHB
/SAVE=PRED(PropPPM).""")
try:
spss.Submit(lrcmd)
except:
raise ValueError("Logistic Regression step failed")
fuzzycmd = spssaux.u(r"""FUZZY BY=PropPPM SUPPLIERID=TAVR NEWDEMANDERIDVARS=ID
GROUP=PPM EXACTPRIORITY=FALSE
MATCHGROUPVAR=%(matchgroup)s FUZZ=0.1 DS3=%(tempdsname)s
/OPTIONS SAMPLEWITHREPLACEMENT=FALSE MINIMIZEMEMORY=TRUE SHUFFLE=FALSE .
DELETE VARIABLES %(matchgroup)s.
DATASET ACTIVATE %(ds)s.
DELETE VARIABLES %(matchgroup)s.
DATASET COPY ppmprop.
DATASET ACTIVATE ppmprop.
SELECT IF PPM EQ 1.
DATASET ACTIVATE %(tempdsname)s.
DATASET ACTIVATE ppmprop.
ADD FILES /FILE=* /FILE=%(tempdsname)s.
EXECUTE.
DATASET CLOSE %(tempdsname)s.""" % locals())
spss.Submit(fuzzycmd)
end program.
This procedure requires the FUZZY extension command which is not installed.
Traceback (most recent call last):
File "<string>", line 7, in <module>
NameError: name 'FUZZY' is not defined
#SPSSStatistics#Support#SupportMigration