LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous messageNext messagePrevious in topicNext in topicPrevious by same authorNext by same authorPrevious page (July 2005)Back to main SPSSX-L pageJoin or leave SPSSX-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Fri, 15 Jul 2005 14:26:44 -0400
Reply-To:     "Feinstein, Zachary" <ZFeinstein@HarrisInteractive.com>
Sender:       "SPSSX(r) Discussion" <SPSSX-L@LISTSERV.UGA.EDU>
From:         "Feinstein, Zachary" <ZFeinstein@HarrisInteractive.com>
Subject:      Cluster Analysis Seems to Have Too Many Variables
Content-Type: text/plain; charset="us-ascii"

I have 1,619 variables. I am starting by doing a hierarchical cluster analysis. From there I will use the centroids as seeds for the quick cluster. The following code works with no problem if I bring the number of cases down to 500. Is there a way for me to tell SPSS (v13) to set aside more memory? I have found SET WORKSPACE but I'm at a bit of a loss in figuring how much of a change I should make without compromising other stuff I do in SPSS.

PROXIMITIES

zcv1 TO zcv4

/MATRIX OUT ("C:\temp2\spssclus.tmp")

/VIEW = CASE

/MEASURE = SEUCLID

/PRINT NONE

/STANDARDIZE = NONE.

SORT CASES BY id.

EXECUTE.

CLUSTER

/MATRIX IN ("C:\temp2\spssclus.tmp")

/METHOD WARD

/PRINT SCHEDULE CLUSTER(3, 7)

/PRINT DISTANCE

/PLOT NONE

/SAVE CLUSTER(3, 7).


Back to: Top of message | Previous page | Main SPSSX-L page