Please enable JavaScript to view this site.

IBM® SPSS® Amos™ 28

The following program uses the ADF estimation criterion to fit the model of Example 8.

Module MainModule
    ' Adf Method Example
    Public Sub Main()
        Dim Sem As AmosEngineLib.AmosEngine = New AmosEngineLib.AmosEngine
 
        Sem.Adf()
 
        Sem.TextOutput()
        Sem.BeginGroup(AmosEngine.AmosDir & "Examples\English\UserGuide.xls", "Grnt_fem")
        Sem.AStructure("visperc = (1) spatial + (1) err_v")
        Sem.AStructure("cubes = spatial + (1) err_c")
        Sem.AStructure("lozenges = spatial + (1) err_l")
        Sem.AStructure("paragraph = (1) verbal + (1) err_p")
        Sem.AStructure("sentence = verbal + (1) err_s")
        Sem.AStructure("wordmean = verbal + (1) err_w")
        Sem.Dispose()
    End Sub
End Module

© 2021 Amos Development Corporation