<?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: Forecast error MAPE in SAS Forecasting and Econometrics</title>
    <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621980#M3738</link>
    <description>&lt;P&gt;The problem with your data is the high number of missing values in your data when you aggregate it at the weekly level. For example, the followings are the most problematic series (the number in parentheses are missing values out of series with 209 observations):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;West : Wyoming (208)&lt;BR /&gt;Central : North Dakota (207)&lt;BR /&gt;East : West Virginia (207)&lt;BR /&gt;East : Maine (206)&lt;BR /&gt;East : District of Co (205)&lt;BR /&gt;Central : South Dakota (204)&lt;BR /&gt;East : Vermont (203)&lt;BR /&gt;West : Montana (201)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: I used the following code to aggregate data at weekly level:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile = '~\ctg_retail_demo.xlsx'
	out = retail_data replace;
run;

proc sort data = retail_data out = retail_data_sorted;
	by state region Order_Date;
run;

proc timedata data = retail_data_sorted out = out;
	id Order_Date interval = week;
	var Total_Sales / ACCUMULATE=TOTAL;
	by state region;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Mon, 03 Feb 2020 16:29:24 GMT</pubDate>
    <dc:creator>imvash</dc:creator>
    <dc:date>2020-02-03T16:29:24Z</dc:date>
    <item>
      <title>Forecast error MAPE</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621595#M3733</link>
      <description>I’m running visual forecasting in viya with retail data&lt;BR /&gt;10k records and region and state hierarchy&lt;BR /&gt;&lt;BR /&gt;I’m getting WMAPE and MAPE values in the hundreds ....500, 600, etc&lt;BR /&gt;&lt;BR /&gt;Anyone know how to get them to be normal less than 100?&lt;BR /&gt;&lt;BR /&gt;This is urgent for customer meeting&lt;BR /&gt;&lt;BR /&gt;I’m a SAS partner&lt;BR /&gt;&lt;BR /&gt;Thx&lt;BR /&gt;&lt;BR /&gt;919-610-3700</description>
      <pubDate>Sat, 01 Feb 2020 04:56:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621595#M3733</guid>
      <dc:creator>Ghabek</dc:creator>
      <dc:date>2020-02-01T04:56:52Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast error MAPE</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621600#M3734</link>
      <description>Can you run the demand classification pipeline and see how many series are considered intermittent?&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Feb 2020 05:58:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621600#M3734</guid>
      <dc:creator>imvash</dc:creator>
      <dc:date>2020-02-01T05:58:12Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast error MAPE</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621635#M3735</link>
      <description>Anyway you can call me to figure this out with me pls?&lt;BR /&gt;&lt;BR /&gt;Thanks&lt;BR /&gt;&lt;BR /&gt;9196103700&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Sat, 01 Feb 2020 14:02:12 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621635#M3735</guid>
      <dc:creator>Ghabek</dc:creator>
      <dc:date>2020-02-01T14:02:12Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast error MAPE</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621676#M3736</link>
      <description>&lt;P&gt;hers the data&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;if you could take look&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;im here to try and figure this out!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Hierarchy is Region and State&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Dependent is total sales&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;time is order date by week&lt;/P&gt;</description>
      <pubDate>Sat, 01 Feb 2020 20:41:46 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621676#M3736</guid>
      <dc:creator>Ghabek</dc:creator>
      <dc:date>2020-02-01T20:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Forecast error MAPE</title>
      <link>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621980#M3738</link>
      <description>&lt;P&gt;The problem with your data is the high number of missing values in your data when you aggregate it at the weekly level. For example, the followings are the most problematic series (the number in parentheses are missing values out of series with 209 observations):&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;West : Wyoming (208)&lt;BR /&gt;Central : North Dakota (207)&lt;BR /&gt;East : West Virginia (207)&lt;BR /&gt;East : Maine (206)&lt;BR /&gt;East : District of Co (205)&lt;BR /&gt;Central : South Dakota (204)&lt;BR /&gt;East : Vermont (203)&lt;BR /&gt;West : Montana (201)&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Note: I used the following code to aggregate data at weekly level:&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile = '~\ctg_retail_demo.xlsx'
	out = retail_data replace;
run;

proc sort data = retail_data out = retail_data_sorted;
	by state region Order_Date;
run;

proc timedata data = retail_data_sorted out = out;
	id Order_Date interval = week;
	var Total_Sales / ACCUMULATE=TOTAL;
	by state region;
run;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 03 Feb 2020 16:29:24 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Forecasting-and-Econometrics/Forecast-error-MAPE/m-p/621980#M3738</guid>
      <dc:creator>imvash</dc:creator>
      <dc:date>2020-02-03T16:29:24Z</dc:date>
    </item>
  </channel>
</rss>

