BasDescriptiveStatistics.Summary

This summary shows the detailed descriptive statistics.

This property is read only.

Syntax Return Value
- Object

Remarks

When accessing specific items of an analysis's output collection, it is more efficient to set a StaDocuments object to the collection and reference that, rather than calling the analysis collection directly. For example:

  
 newanalysis.Dialog.Summary(1).SaveAs("C:\Data\GenderSummary.sta")
 newanalysis.Dialog.Summary(2).SaveAs("C:\Data\AdvertSummary.sta")
	newanalysis.Dialog.Summary(3).Visible = True

This is more efficient when written as:

	Dim s As StaDocuments
 Set s=newanalysis.Dialog.Summary
 s(1).SaveAs("C:\Data\GenderSummary.sta")
	s(2).SaveAs("C:\Data\AdvertSummary.sta")
 s(3).Visible = True