<?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: Determine if promotion impacts demand/sales. in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/935013#M4840</link>
    <description>&lt;P&gt;The certain number of stores are under same promotion versus the rest of stores are no promotion at all. D-I-D models seems to be promising. but how to implement in SAS code?&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 08 Jul 2024 18:15:20 GMT</pubDate>
    <dc:creator>t75wez1</dc:creator>
    <dc:date>2024-07-08T18:15:20Z</dc:date>
    <item>
      <title>Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934647#M4836</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I have weekly time series POS data from retail on store level where the dependent variable is demand for a product in volume and the independent variables are product price, and a binary intervention dummy variable to indicate promotion within certain time frame on retail store level with location and address.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What statistical analysis can determine if the promotion impacts demand/sales? &amp;nbsp;Do any of you have any suggestions or recommendations? Any feedback would be very much appreciated!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Ethan&lt;/P&gt;&lt;P&gt;P.S. I do have SAS/ETS available.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 03:14:39 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934647#M4836</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-07-04T03:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934667#M4837</link>
      <description>&lt;P&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/23924"&gt;@t75wez1&lt;/a&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;I see you have posted this in the Forecasting part of the SAS Communities. But in your other post on this topic, your initial description was not sufficient, and after questioning, you provided a lot more information. That information needs to be provided here. Right now, no one can provide the correct answer based on what you have said here.&lt;/P&gt;</description>
      <pubDate>Thu, 04 Jul 2024 10:20:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934667#M4837</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2024-07-04T10:20:02Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934700#M4838</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Ok. Thanks for point it out.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;My goal is not forecasting for the future months with historical data.&amp;nbsp; I expected to build a A/B test and have no idea on how to define a control and a test group.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not clear on how to implement the example below to design A/B test.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Not sure if comparing the results with X1 and without X1 by running the ARIMA model below twice.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Could anyone shed some light on it?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Here is the time series data and ARIMA code:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV class=""&gt;&lt;DIV&gt;&lt;PRE&gt;/*--------------------------------------------------------------

                    SAS Sample Library

        Name: ariex04.sas
 Description: Example program from SAS/ETS User's Guide,
              The ARIMA Procedure
       Title: An Intervention Model for Ozone Data
     Product: SAS/ETS Software
        Keys: time series analysis
        PROC: ARIMA
       Notes:

--------------------------------------------------------------*/

title1 'Intervention Data for Ozone Concentration';
title2 '(Box and Tiao, JASA 1975 P.70)';
data air;
   input ozone @@;
   label ozone  = 'Ozone Concentration'
         x1     = 'Intervention for post 1960 period'
         summer = 'Summer Months Intervention'
         winter = 'Winter Months Intervention';
   date = intnx( 'month', '31dec1954'd, _n_ );
   format date monyy.;
   month = month( date );
   year = year( date );
   x1 = year &amp;gt;= 1960;
   summer = ( 5 &amp;lt; month &amp;lt; 11 ) * ( year &amp;gt; 1965 );
   winter = ( year &amp;gt; 1965 ) - summer;
datalines;
2.7  2.0  3.6  5.0  6.5  6.1  5.9  5.0  6.4  7.4  8.2  3.9
4.1  4.5  5.5  3.8  4.8  5.6  6.3  5.9  8.7  5.3  5.7  5.7
3.0  3.4  4.9  4.5  4.0  5.7  6.3  7.1  8.0  5.2  5.0  4.7
3.7  3.1  2.5  4.0  4.1  4.6  4.4  4.2  5.1  4.6  4.4  4.0
2.9  2.4  4.7  5.1  4.0  7.5  7.7  6.3  5.3  5.7  4.8  2.7
1.7  2.0  3.4  4.0  4.3  5.0  5.5  5.0  5.4  3.8  2.4  2.0
2.2  2.5  2.6  3.3  2.9  4.3  4.2  4.2  3.9  3.9  2.5  2.2
2.4  1.9  2.1  4.5  3.3  3.4  4.1  5.7  4.8  5.0  2.8  2.9
1.7  3.2  2.7  3.0  3.4  3.8  5.0  4.8  4.9  3.5  2.5  2.4
1.6  2.3  2.5  3.1  3.5  4.5  5.7  5.0  4.6  4.8  2.1  1.4
2.1  2.9  2.7  4.2  3.9  4.1  4.6  5.8  4.4  6.1  3.5  1.9
1.8  1.9  3.7  4.4  3.8  5.6  5.7  5.1  5.6  4.8  2.5  1.5
1.8  2.5  2.6  1.8  3.7  3.7  4.9  5.1  3.7  5.4  3.0  1.8
2.1  2.6  2.8  3.2  3.5  3.5  4.9  4.2  4.7  3.7  3.2  1.8
2.0  1.7  2.8  3.2  4.4  3.4  3.9  5.5  3.8  3.2  2.3  2.2
1.3  2.3  2.7  3.3  3.7  3.0  3.8  4.7  4.6  2.9  1.7  1.3
1.8  2.0  2.2  3.0  2.4  3.5  3.5  3.3  2.7  2.5  1.6  1.2
1.5  2.0  3.1  3.0  3.5  3.4  4.0  3.8  3.1  2.1  1.6  1.3
 .    .    .    .    .    .    .    .    .    .    .    .
;

proc arima data=air;

   /* Identify and seasonally difference ozone series */
   identify var=ozone(12)
            crosscorr=( x1(12) summer winter ) noprint;

   /* Fit a multiple regression with a seasonal MA model */
   /*     by the maximum likelihood method               */
   estimate q=(1)(12) input=( x1 summer winter )
            noconstant method=ml;

   /* Forecast */
   forecast  lead=12 id=date interval=month out=arimaout;

run;&lt;/PRE&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Thu, 04 Jul 2024 15:55:17 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934700#M4838</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-07-04T15:55:17Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934701#M4839</link>
      <description>Are all products under the same promotion? If not the control group is products not under promotion and experimental are those who have a promotion.   Difference in Difference model can be used here. &lt;A href="https://www.princeton.edu/~otorres/DID101.pdf" target="_blank"&gt;https://www.princeton.edu/~otorres/DID101.pdf&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;If everything is under promotion then you can do a bayesian structural time series model. &lt;A href="https://en.wikipedia.org/wiki/Bayesian_structural_time_series#:~:text=Bayesian%20structural%20time%20series%20(BSTS,the%20field%20of%20analytical%20marketing" target="_blank"&gt;https://en.wikipedia.org/wiki/Bayesian_structural_time_series#:~:text=Bayesian%20structural%20time%20series%20(BSTS,the%20field%20of%20analytical%20marketing&lt;/A&gt;. Not sure how SAS does this one.</description>
      <pubDate>Thu, 04 Jul 2024 17:00:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/934701#M4839</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-07-04T17:00:01Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/935013#M4840</link>
      <description>&lt;P&gt;The certain number of stores are under same promotion versus the rest of stores are no promotion at all. D-I-D models seems to be promising. but how to implement in SAS code?&lt;/P&gt;&lt;P&gt;Thanks,&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 18:15:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/935013#M4840</guid>
      <dc:creator>t75wez1</dc:creator>
      <dc:date>2024-07-08T18:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Determine if promotion impacts demand/sales.</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/935037#M4841</link>
      <description>&lt;P&gt;&lt;A href="https://www.lexjansen.com/search/searchresults.php?q=difference+in+difference+model#gsc.tab=0&amp;amp;gsc.q=difference%20in%20difference%20model&amp;amp;gsc.page=1" target="_blank"&gt;https://www.lexjansen.com/search/searchresults.php?q=difference+in+difference+model#gsc.tab=0&amp;amp;gsc.q=difference%20in%20difference%20model&amp;amp;gsc.page=1&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;GLM/MIXED are typically used. See a few of the links and decide which works best for you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 08 Jul 2024 19:45:07 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Determine-if-promotion-impacts-demand-sales/m-p/935037#M4841</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2024-07-08T19:45:07Z</dc:date>
    </item>
  </channel>
</rss>

