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:
[hidden email]] On Behalf Of
[hidden email]
Sent: Wednesday, January 10, 2007 10:03 AM
To:
[hidden email]
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