<?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 How to print the remaining data after remove the outliers. in SAS/IML Software and Matrix Computations</title>
    <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422100#M3929</link>
    <description>&lt;P&gt;PROC IML;&lt;BR /&gt;RESET NONAME;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;START BP(A) GLOBAL (NY,NCOL,RMEAN,VARX,N);&lt;BR /&gt;RMEAN=J(NCOL(NY),1,0);&lt;BR /&gt;Q1=RMEAN;&lt;BR /&gt;Q3=RMEAN;&lt;BR /&gt;RMAD=RMEAN;&lt;BR /&gt;MADN=RMEAN;&lt;BR /&gt;LOWFEN=RMEAN;&lt;BR /&gt;UPPFEN=RMEAN;&lt;BR /&gt;LEFT=RMEAN;&lt;/P&gt;&lt;P&gt;F=1;&lt;BR /&gt;M=0;&lt;/P&gt;&lt;P&gt;DO J=1 TO NCOL(NY);&lt;/P&gt;&lt;P&gt;SAMP=NY[J];&lt;BR /&gt;L=M+SAMP;&lt;BR /&gt;TEMP=A[F:L];&lt;BR /&gt;&lt;BR /&gt;Q=quartile (TEMP);&lt;BR /&gt;Q1[J]=Q[2,1];&lt;BR /&gt;Q3[J]=Q[4,1];&lt;BR /&gt;RMAD[J]=MAD(TEMP,"MAD");&lt;BR /&gt;MADN[J]=MAD(TEMP,"NMAD");&lt;BR /&gt;LOWFEN[J]=Q1[J]-(1.44*MADN[J]);&lt;BR /&gt;UPPFEN[J]=Q3[J]+(1.44*MADN[J]);&lt;BR /&gt;LEFT=TEMP[LOC(LOWFEN[J]&amp;lt;TEMP &amp;amp; TEMP&amp;lt;UPPFEN[J])];&lt;BR /&gt;&lt;BR /&gt;M=L;&lt;BR /&gt;F=F+SAMP;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;PRINT LEFT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINISH;&lt;/P&gt;&lt;P&gt;********cubaan menggunakan data yg dijana*******;&lt;/P&gt;&lt;P&gt;NY = {11 11 11};&lt;BR /&gt;A = {5,8,7,3,9,4,3,29,5,6,7,&lt;BR /&gt;3,2,6,4,14,4,7,6,9,3,4,&lt;BR /&gt;9,9,8,7,10,11,27,12,15,17,16};&lt;/P&gt;&lt;P&gt;RUN BP(A);&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here, I wish to print matrix free from outliers for three group as the LOWFEN and UPPFEN are the fences to detect outliers and coding LEFT suppose the matrix that have been free from outliers.&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Dec 2017 19:20:45 GMT</pubDate>
    <dc:creator>NURAO</dc:creator>
    <dc:date>2017-12-18T19:20:45Z</dc:date>
    <item>
      <title>How to print the remaining data after remove the outliers.</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422100#M3929</link>
      <description>&lt;P&gt;PROC IML;&lt;BR /&gt;RESET NONAME;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;START BP(A) GLOBAL (NY,NCOL,RMEAN,VARX,N);&lt;BR /&gt;RMEAN=J(NCOL(NY),1,0);&lt;BR /&gt;Q1=RMEAN;&lt;BR /&gt;Q3=RMEAN;&lt;BR /&gt;RMAD=RMEAN;&lt;BR /&gt;MADN=RMEAN;&lt;BR /&gt;LOWFEN=RMEAN;&lt;BR /&gt;UPPFEN=RMEAN;&lt;BR /&gt;LEFT=RMEAN;&lt;/P&gt;&lt;P&gt;F=1;&lt;BR /&gt;M=0;&lt;/P&gt;&lt;P&gt;DO J=1 TO NCOL(NY);&lt;/P&gt;&lt;P&gt;SAMP=NY[J];&lt;BR /&gt;L=M+SAMP;&lt;BR /&gt;TEMP=A[F:L];&lt;BR /&gt;&lt;BR /&gt;Q=quartile (TEMP);&lt;BR /&gt;Q1[J]=Q[2,1];&lt;BR /&gt;Q3[J]=Q[4,1];&lt;BR /&gt;RMAD[J]=MAD(TEMP,"MAD");&lt;BR /&gt;MADN[J]=MAD(TEMP,"NMAD");&lt;BR /&gt;LOWFEN[J]=Q1[J]-(1.44*MADN[J]);&lt;BR /&gt;UPPFEN[J]=Q3[J]+(1.44*MADN[J]);&lt;BR /&gt;LEFT=TEMP[LOC(LOWFEN[J]&amp;lt;TEMP &amp;amp; TEMP&amp;lt;UPPFEN[J])];&lt;BR /&gt;&lt;BR /&gt;M=L;&lt;BR /&gt;F=F+SAMP;&lt;/P&gt;&lt;P&gt;END;&lt;/P&gt;&lt;P&gt;PRINT LEFT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;FINISH;&lt;/P&gt;&lt;P&gt;********cubaan menggunakan data yg dijana*******;&lt;/P&gt;&lt;P&gt;NY = {11 11 11};&lt;BR /&gt;A = {5,8,7,3,9,4,3,29,5,6,7,&lt;BR /&gt;3,2,6,4,14,4,7,6,9,3,4,&lt;BR /&gt;9,9,8,7,10,11,27,12,15,17,16};&lt;/P&gt;&lt;P&gt;RUN BP(A);&lt;/P&gt;&lt;P&gt;QUIT;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Here, I wish to print matrix free from outliers for three group as the LOWFEN and UPPFEN are the fences to detect outliers and coding LEFT suppose the matrix that have been free from outliers.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Dec 2017 19:20:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422100#M3929</guid>
      <dc:creator>NURAO</dc:creator>
      <dc:date>2017-12-18T19:20:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the remaining data after remove the outliers.</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422204#M3930</link>
      <description>&lt;P&gt;If you&amp;nbsp;move PRINT LEFT&amp;nbsp;inside the DO loop then it will execute 3 times, once for each group.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 06:59:48 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422204#M3930</guid>
      <dc:creator>IanWakeling</dc:creator>
      <dc:date>2017-12-19T06:59:48Z</dc:date>
    </item>
    <item>
      <title>Re: How to print the remaining data after remove the outliers.</title>
      <link>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422255#M3932</link>
      <description>&lt;P&gt;Thank you so much.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Dec 2017 12:55:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-IML-Software-and-Matrix/How-to-print-the-remaining-data-after-remove-the-outliers/m-p/422255#M3932</guid>
      <dc:creator>NURAO</dc:creator>
      <dc:date>2017-12-19T12:55:33Z</dc:date>
    </item>
  </channel>
</rss>

