<?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: Calculate overall differences in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674444#M79304</link>
    <description>&lt;P&gt;By bird:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
    class time_period bird;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model&amp;nbsp;pecking&amp;nbsp;preening&amp;nbsp;dustbathing&amp;nbsp;shaking&amp;nbsp;=&amp;nbsp;time_period bird time_period*bird;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lsmeans time_period bird time_period*bird/lines tdiff;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;By flock and bird&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
    class time_period bird flock;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model&amp;nbsp;pecking&amp;nbsp;preening&amp;nbsp;dustbathing&amp;nbsp;shaking&amp;nbsp;=&amp;nbsp;time_period flock bird(flock) time_period*flock time_period*bird(flock);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lsmeans time_period flock bird(flock) time_period*flock time_period*bird(flock)/lines tdiff;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Since the second analysis accounts for the effects of both bird and flock, I would simply do that analysis and not the analysis which doesn't use flock.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In either case, if you have an awful lot of birds, maybe this isn't the best way to go.&lt;/P&gt;</description>
    <pubDate>Tue, 04 Aug 2020 16:59:44 GMT</pubDate>
    <dc:creator>PaigeMiller</dc:creator>
    <dc:date>2020-08-04T16:59:44Z</dc:date>
    <item>
      <title>Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/673782#M79289</link>
      <description>&lt;P&gt;I am working on this project and need to calculate "overall differences in time spent between periods" with the data I have. I have imported my excel workbook into SAS studio and was wondering what is the next step I should take. Here is a screenshot of what I am working with, there are 5 different time periods in the data set.&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-07-31 at 11.15.16 AM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47845iC9E58E9939C38C45/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-07-31 at 11.15.16 AM.png" alt="Screen Shot 2020-07-31 at 11.15.16 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 16:17:04 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/673782#M79289</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-07-31T16:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/673785#M79290</link>
      <description>&lt;P&gt;Are you talking about differences of the means among the 5 time periods? Or something else? What does the word "overall" indicate here?&lt;/P&gt;</description>
      <pubDate>Fri, 31 Jul 2020 16:38:42 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/673785#M79290</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-07-31T16:38:42Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674403#M79303</link>
      <description>&lt;P&gt;I am referring to the overall difference of the mean from each of the behaviors (pecking, preening, dustbathing, and shaking) based on the 5 time periods. I want to see if there were differences in times spent per behavior per bird based on the time periods. And then I want to see if there were differences in times spent per behavior per flock as well.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 15:41:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674403#M79303</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-04T15:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674444#M79304</link>
      <description>&lt;P&gt;By bird:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
    class time_period bird;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model&amp;nbsp;pecking&amp;nbsp;preening&amp;nbsp;dustbathing&amp;nbsp;shaking&amp;nbsp;=&amp;nbsp;time_period bird time_period*bird;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lsmeans time_period bird time_period*bird/lines tdiff;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;By flock and bird&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc glm data=have;
    class time_period bird flock;
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;model&amp;nbsp;pecking&amp;nbsp;preening&amp;nbsp;dustbathing&amp;nbsp;shaking&amp;nbsp;=&amp;nbsp;time_period flock bird(flock) time_period*flock time_period*bird(flock);
&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;lsmeans time_period flock bird(flock) time_period*flock time_period*bird(flock)/lines tdiff;
run;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;Since the second analysis accounts for the effects of both bird and flock, I would simply do that analysis and not the analysis which doesn't use flock.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;In either case, if you have an awful lot of birds, maybe this isn't the best way to go.&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 16:59:44 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674444#M79304</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-04T16:59:44Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674488#M79305</link>
      <description>&lt;P&gt;I put the code in and this was the outcome (see attachments). I see that I need to fix the data= part. How do I get the data I want to the data=_____? I then did proc glm data=mite_sen (which is the table I showed in my first post) and says that "&lt;SPAN&gt; ERROR: File WORK.MITE_SEN.DATA does not exist"&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Thank you!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 18:05:34 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674488#M79305</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-04T18:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674509#M79306</link>
      <description>&lt;P&gt;I figured out the data= and fixed the wording so the variable matched up. When I ran the code this came up...do you know what this means?&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-08-04 at 1.51.26 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47944i6208882FEDC18161/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-08-04 at 1.51.26 PM.png" alt="Screen Shot 2020-08-04 at 1.51.26 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-08-04 at 1.56.46 PM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/47945i1523D8EA55FC10E3/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-08-04 at 1.56.46 PM.png" alt="Screen Shot 2020-08-04 at 1.56.46 PM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 19:01:35 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674509#M79306</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-04T19:01:35Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674527#M79308</link>
      <description>&lt;P&gt;It's trying to do some plots, and it is having problems. How many different birds and flocks do you have?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You might want to try turning off the ODS GRAPHICS before you run PROC GLM, although certainly some of the plots can be helpful. Use this command&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;ods graphics off;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Tue, 04 Aug 2020 19:29:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674527#M79308</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-04T19:29:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674541#M79309</link>
      <description>&lt;P&gt;There are 4 flocks total and each flock has 12 birds&lt;/P&gt;</description>
      <pubDate>Tue, 04 Aug 2020 19:59:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674541#M79309</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-04T19:59:01Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674984#M79314</link>
      <description>&lt;P&gt;I did the ods graphic off; statement and it still won't run&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 12:56:18 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674984#M79314</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-06T12:56:18Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674998#M79315</link>
      <description>&lt;P&gt;What do you mean by "it still won't run"? What do you see? Can you show us the ENTIRE log for PROC GLM, including the code, NOTEs, WARNINGs and ERRORs? Please copy the log as text and then paste it into the window that appears when you click on the &amp;lt;/&amp;gt; icon here. Do not show us the log as a screen capture.&lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 13:51:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/674998#M79315</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-08-06T13:51:12Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/675089#M79317</link>
      <description>&lt;P&gt;Code:&lt;/P&gt;&lt;P&gt;options validvarname=v7;&lt;BR /&gt;libname mite_sen xlsx "/folders/myfolders/myfolders/UC Davis Thesis/Mite Sensor.xlsx";&lt;BR /&gt;run;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;proc glm data=mite_sen.percentofday;&lt;BR /&gt;class time_period bird flock;&lt;BR /&gt;model pecking_s preening_s dustbathing_s shaking_s = time_period flock bird(flock) time_period*flock time_period*bird(flock);&lt;BR /&gt;lsmeans time_period flock bird(flock) time_period*flock time_period*bird(flock)/lines tdiff;&lt;BR /&gt;run;&lt;BR /&gt;quit;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Log:&lt;/P&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter dijitContentPaneSingleChild"&gt;&lt;DIV class="dijitBorderContainer dijitContainer row-fluid dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitAlignCenter dijitContentPaneSingleChild dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane"&gt;&lt;DIV class="tabs dijitBorderContainer dijitContainer dojoDndTarget sasStudioTabsParentContainer dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasStudioTabsTabContainer sasStudioTabsTabContainerVertical sasStudioTabsTop dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV class="dijitTabPaneWrapper dijitTabContainerTop-container dijitAlignCenter"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer sasStudioTabsTabContainerChild dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dojoDndTarget dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer dojoDndContainerOver"&gt;&lt;DIV class="dijitTabContainer dijitTabContainerTop dijitContainer dijitLayoutContainer tabStrip-disabled sasSuiteTabs dijitAlignCenter dijitBorderContainer-child dijitBorderContainer-dijitTabContainerTop dijitBorderContainerPane"&gt;&lt;DIV class="dijitTabContainerTopChildWrapper dijitVisible"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitTabPane dijitTabContainerTop-child dijitTabContainerTop-dijitBorderContainer dijitLayoutContainer"&gt;&lt;DIV class="dijitBorderContainer dijitContainer dijitBorderContainer-child dijitBorderContainer-dijitBorderContainer dijitBorderContainerPane dijitAlignCenter dijitLayoutContainer"&gt;&lt;DIV class="dijitContentPane dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignCenter"&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;1 OPTIONS NONOTES NOSTIMER NOSOURCE NOSYNTAXCHECK;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;72&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasSource"&gt;73 proc glm data=mite_sen.percentofday;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Time Period -&amp;gt; Time_Period&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Pecking Hz -&amp;gt; Pecking_Hz&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Preening Hz -&amp;gt; Preening_Hz&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Dustbathing Hz -&amp;gt; Dustbathing_Hz&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Shaking Hz -&amp;gt; Shaking_Hz&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Pecking s -&amp;gt; Pecking_s&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Preening s -&amp;gt; Preening_s&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Dustbathing s -&amp;gt; Dustbathing_s&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Shaking s -&amp;gt; Shaking_s&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Pecking PercentOfDay -&amp;gt; Pecking_PercentOfDay&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Preening PercentOfDay -&amp;gt; Preening_PercentOfDay&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Dustbathing PercentOfDay -&amp;gt; Dustbathing_PercentOfDay&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Variable Name Change. Shaking PercentOfDay -&amp;gt; Shaking_PercentOfDay&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;74 class time_period bird flock;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 model pecking_s preening_s dustbathing_s shaking_s = time_period flock bird(flock) time_period*flock&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;75 ! time_period*bird(flock);&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;76 lsmeans time_period flock bird(flock) time_period*flock time_period*bird(flock)/lines tdiff;&lt;/DIV&gt;&lt;DIV class="sasSource"&gt;77 run;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: The import data set has 1896 observations and 16 variables.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;NOTE: Data label collision avoidance has been disabled because the threshold has been reached. You can set LABELMAX=3600 in the ODS&lt;/DIV&gt;&lt;DIV class="sasNote"&gt;GRAPHICS statement to restore collision avoidance.&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;DIV class="dijitContentPane statusBar dijitBorderContainer-child dijitBorderContainer-dijitContentPane dijitBorderContainerPane dijitAlignBottom"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;When I do the ods graphic off; the running icon keeps going:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="Screen Shot 2020-08-06 at 11.46.05 AM.png" style="width: 400px;"&gt;&lt;img src="https://communities.sas.com/t5/image/serverpage/image-id/48034iC1F92C47A416C44E/image-size/medium?v=v2&amp;amp;px=400" role="button" title="Screen Shot 2020-08-06 at 11.46.05 AM.png" alt="Screen Shot 2020-08-06 at 11.46.05 AM.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;</description>
      <pubDate>Thu, 06 Aug 2020 18:02:40 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/675089#M79317</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-06T18:02:40Z</dc:date>
    </item>
    <item>
      <title>Re: Calculate overall differences</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/675613#M79320</link>
      <description>&lt;P&gt;Hopefully the context I sent is easy to read&lt;/P&gt;</description>
      <pubDate>Mon, 10 Aug 2020 14:49:37 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Calculate-overall-differences/m-p/675613#M79320</guid>
      <dc:creator>KatieBachert23</dc:creator>
      <dc:date>2020-08-10T14:49:37Z</dc:date>
    </item>
  </channel>
</rss>

