<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: SAS 9.4 Proc Calis Method=mlsb available? in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458423#M23923</link>
    <description>&lt;P&gt;my code is:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc calis data=ifsns_25_3c modification method=mlm; 
factor 
	extendedbf ---&amp;gt; snpre_74 snpre_67 snpre_73 snpre_76 snpre_75 snpre_68 snpre_77 snpre_70, 
	mottocomply ---&amp;gt; snpre_6 snpre_1 snpre_4 snpre_5 snpre_14 snpre_8 snpre_3,
	exbf ---&amp;gt; snpre_38 snpre_45 snpre_44 snpre_43 snpre_39, 
	public ---&amp;gt; snpre_83 snpre_84 snpre_80 snpre_82 snpre_85; 
pvar 
	extendedBF mottocomply exbf public = 4*1.; by fa; 
	run;&lt;/PRE&gt;&lt;P&gt;and I get the error message: "Assuming the symbol ML was misspelled as mlm." but I meant mlm&amp;nbsp;or mlsb for the Satorra-Bentler method. Can anyone help with this? Thank you!&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sun, 29 Apr 2018 04:48:48 GMT</pubDate>
    <dc:creator>Kpianist</dc:creator>
    <dc:date>2018-04-29T04:48:48Z</dc:date>
    <item>
      <title>SAS 9.4 Proc Calis Method=mlsb available?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458325#M23908</link>
      <description>&lt;P&gt;Hi everyone, I am trying to conduct a confirmatory factor analysis of a 7-factor structure (identified through exploratory factor analysis) consisting of 39 items that were measured on a 5-point likert scale. Since my 39 variables are ordinal, it does not meet the multivariate normality assumption. Therefore, I am attempting to use the robust maximum likelihood using the method=mlsb using proc calis. Is this possible with SAS 9.4? If not, what can I do to use this method with SAS 9.4?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you in advance!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 09:40:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458325#M23908</guid>
      <dc:creator>Kpianist</dc:creator>
      <dc:date>2018-04-28T09:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 Proc Calis Method=mlsb available?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458326#M23909</link>
      <description>&lt;P&gt;I meant to write model=MLSB rather than method=MLSB. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 09:43:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458326#M23909</guid>
      <dc:creator>Kpianist</dc:creator>
      <dc:date>2018-04-28T09:43:29Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 Proc Calis Method=mlsb available?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458327#M23910</link>
      <description>&lt;P&gt;Nevermind. I was right the first time - method=MLSB. I think it's time to sleep!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 28 Apr 2018 09:46:58 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458327#M23910</guid>
      <dc:creator>Kpianist</dc:creator>
      <dc:date>2018-04-28T09:46:58Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 Proc Calis Method=mlsb available?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458423#M23923</link>
      <description>&lt;P&gt;my code is:&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;proc calis data=ifsns_25_3c modification method=mlm; 
factor 
	extendedbf ---&amp;gt; snpre_74 snpre_67 snpre_73 snpre_76 snpre_75 snpre_68 snpre_77 snpre_70, 
	mottocomply ---&amp;gt; snpre_6 snpre_1 snpre_4 snpre_5 snpre_14 snpre_8 snpre_3,
	exbf ---&amp;gt; snpre_38 snpre_45 snpre_44 snpre_43 snpre_39, 
	public ---&amp;gt; snpre_83 snpre_84 snpre_80 snpre_82 snpre_85; 
pvar 
	extendedBF mottocomply exbf public = 4*1.; by fa; 
	run;&lt;/PRE&gt;&lt;P&gt;and I get the error message: "Assuming the symbol ML was misspelled as mlm." but I meant mlm&amp;nbsp;or mlsb for the Satorra-Bentler method. Can anyone help with this? Thank you!&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 29 Apr 2018 04:48:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/458423#M23923</guid>
      <dc:creator>Kpianist</dc:creator>
      <dc:date>2018-04-29T04:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: SAS 9.4 Proc Calis Method=mlsb available?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/545622#M27291</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I'm trying to run method=mlsb for my CFA, but I'm getting a the following message "You do not provide raw data, which are required by the Satorra-Bentler adjustments of model fit chi-square and standard errors. The estimation method specified is switched to the regular version without the adjustments."&amp;nbsp; Do you have an example of how you ran the procedure? Here is an example of where I placed the command:&lt;/P&gt;&lt;P&gt;proc calis data=mydata method=mlsb covariance modification;&lt;BR /&gt;lineqs&lt;BR /&gt;V1 = LV1F1 F1 + E1,&lt;BR /&gt;V2 = LV2F1 F1 + E2,&lt;BR /&gt;V3 = LV3F2 F2 + E3,&lt;BR /&gt;V4 = LV4F2 F2 + E4,&lt;BR /&gt;V5 = LV5F3 F3 + E5,&lt;BR /&gt;V6 = LV6F3 F3 + E6,&lt;BR /&gt;V7 = LV7F4 F4 + E7,&lt;BR /&gt;V8 = LV8F4 F4 + E8,&lt;BR /&gt;V9 = LV9F5 F5 + E9,&lt;BR /&gt;V10 = LV10F5 F5 + E10,&lt;BR /&gt;V11 = LV11F5 F5 + E11,&lt;BR /&gt;V12 = LV12F6 F6 + E12,&lt;BR /&gt;V13 = LV13F6 F6 + E13,&lt;BR /&gt;V14 = LV14F7 F7 + E14,&lt;BR /&gt;V15 = LV15F7 F7 + E15,&lt;BR /&gt;V16 = LV16F8 F8 + E16,&lt;BR /&gt;V17 = LV17F8 F8 + E17,&lt;BR /&gt;V18 = LV18F9 F9 + E18,&lt;BR /&gt;V19 = LV19F9 F9 + E19;&lt;BR /&gt;variance&lt;BR /&gt;F1 = 1,&lt;BR /&gt;F2 = 1,&lt;BR /&gt;F3 = 1,&lt;BR /&gt;F4 = 1,&lt;BR /&gt;F5 = 1,&lt;BR /&gt;F6 = 1,&lt;BR /&gt;F7 = 1,&lt;BR /&gt;F8 = 1,&lt;BR /&gt;F9 = 1,&lt;BR /&gt;E1-E19 = VARE1-VARE19;&lt;BR /&gt;cov&lt;BR /&gt;F1 F2 = CF1F2,&lt;BR /&gt;F1 F3 = CF1F3,&lt;BR /&gt;F1 F4 = CF1F4,&lt;BR /&gt;F1 F5 = CF1F5,&lt;BR /&gt;F1 F6 = CF1F6,&lt;BR /&gt;F1 F7 = CF1F7,&lt;BR /&gt;F1 F8 = CF1F8,&lt;BR /&gt;F1 F9 = CF1F9,&lt;BR /&gt;F2 F3 = CF2F3,&lt;BR /&gt;F2 F4 = CF2F4,&lt;BR /&gt;F2 F5 = CF2F5,&lt;BR /&gt;F2 F6 = CF2F6,&lt;BR /&gt;F2 F7 = CF2F7,&lt;BR /&gt;F2 F8 = CF2F8,&lt;BR /&gt;F2 F9 = CF2F9,&lt;BR /&gt;F3 F4 = CF3F4,&lt;BR /&gt;F3 F5 = CF3F5,&lt;BR /&gt;F4 F5 = CF4F5,&lt;BR /&gt;F4 F6 = CF4F6,&lt;BR /&gt;F4 F7 = CF4F7,&lt;BR /&gt;F6 F7 = CF6F7,&lt;BR /&gt;F6 F8 = CF6F8,&lt;BR /&gt;F6 F9 = CF6F9,&lt;BR /&gt;F7 F8 = CF7F8,&lt;BR /&gt;F7 F9 = CF7F9,&lt;BR /&gt;F8 F9 = CF8F9;&lt;BR /&gt;var V1-V19;&lt;BR /&gt;run;&lt;/P&gt;</description>
      <pubDate>Sun, 24 Mar 2019 19:46:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/SAS-9-4-Proc-Calis-Method-mlsb-available/m-p/545622#M27291</guid>
      <dc:creator>edpsychresearch</dc:creator>
      <dc:date>2019-03-24T19:46:03Z</dc:date>
    </item>
  </channel>
</rss>

