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 (January 2007)Back to main SPSSX-L pageJoin or leave SPSSX-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:   Thu, 11 Jan 2007 09:55:48 -0500
Reply-To:   "Feinstein, Zachary" <ZFeinstein@HarrisInteractive.com>
Sender:   "SPSSX(r) Discussion" <SPSSX-L@LISTSERV.UGA.EDU>
From:   "Feinstein, Zachary" <ZFeinstein@HarrisInteractive.com>
Subject:   Displaying Only Correlations
Comments:   To: BTibert@bentley.edu
Content-Type:   text/plain; charset="us-ascii"

Brock,

The following autoscript will take care of the correlations part. Zachary

Sub Correlations_Table_Correlations_Create(objPivotTable As Object, objOutputDoc As Object, lngIndex As Long)

' Will remove the statistical significance testing and sample size from correlations output. Dim objPivotManager As ISpssPivotMgr Dim objRow As ISpssDimension Dim intCount As Integer Set objPivotManager = objPivotTable.PivotManager

' Search for the row dimension named "Statistics" and pivot it to the first layer dimension: intCount = objPivotManager.NumRowDimensions For I = 0 To intCount -1 Set objRow = objPivotManager.RowDimension(I) If objRow.DimensionName = "Statistics" Then objRow.MoveToLayer(0) Exit For End If Next

End Sub

-----Original Message----- From: SPSSX(r) Discussion [mailto:SPSSX-L@LISTSERV.UGA.EDU] On Behalf Of BTibert@bentley.edu Sent: Wednesday, January 10, 2007 10:03 AM To: SPSSX-L@LISTSERV.UGA.EDU Subject: 2 Queries in 1

Hello Members,

Hopefully 2 quick questions.

First, I want to clean my correlation output table to show only the correlation coefficients, and for only one side of the matrix. Is this possible? I do not want to have to export the data and manually clean it.

Second, is perceptual mapping possible, and if so, is it only available the Categories add-on? I am new to this concept and am trying to figure out new and exciting ways to present my analyses.

Any insight will be greatly appreciated,

~ Brock


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