<?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: Analysis of Leading Economic Indicators by Decisive Data in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/1343292#M4533</link>
    <description>&lt;P&gt;Hi Evan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for this great dashboard. It takes time to learn it to read. Could you please comment my findings?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. On the first graph there are the "Avg 10-12 mo change" value and the "Current value" on top of it... I noticed that there's a shift on Date axis, befause the future value graph is 12 months shorter (see attachement Clipboard01.jpg). Is it intentional or is it a mistake?&lt;/P&gt;
&lt;P&gt;2. Am I right, that the Historical N-Tile Analysis is to show the quality of the model? When there are batterns on the rows, then the model results can be trusted?&lt;/P&gt;
&lt;P&gt;3. Is the "Current N-Tile" meant to show if we are currently out of the average?&lt;BR /&gt;4. On the bubble graph, what does the bubble size represent?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Viljar&lt;/P&gt;</description>
    <pubDate>Thu, 03 Sep 2020 07:22:01 GMT</pubDate>
    <dc:creator>Viljar_p</dc:creator>
    <dc:date>2020-09-03T07:22:01Z</dc:date>
    <item>
      <title>Analysis of Leading Economic Indicators by Decisive Data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/218886#M977</link>
      <description>&lt;P&gt;&lt;STRONG&gt;The Challenge&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;Every day we are inundated with noise about the health of the economy. Take for instance the following headline, “Consumer Sentiment ticks down 2 points to 93.1”. &amp;nbsp;Without more information, there is no way to know if this is slightly negative, very negative, or simply neutral. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The goal of this exercise was to use the advanced capabilities of Power BI to:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Visualize how various economic leading indicators are correlated to future moves in the employment rate, stock market, and housing market.&lt;/LI&gt;
&lt;LI&gt;Show the current status of the economy for each leading indicator.&lt;/LI&gt;
&lt;LI&gt;Develop a solution that can be automatically refreshed with the latest data from the Federal Reserve.&lt;/LI&gt;
&lt;LI&gt;Provide simple summary of future expectations based on current conditions.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;The Solution&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Visual Concept&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;From a visual analytics perspective studying simple averages is a great place to start. Couple this with another powerful methodology called &lt;A href="https://www.google.com/#q=decile+analysis" target="_blank" rel="noopener"&gt;Decile Analysis&lt;/A&gt; &amp;nbsp;(also called segmentation or binning data into equal 10-part N-Tiles) and you are on a path towards an advanced understanding of your data. &amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This dashboard uses this approach to study 8 leading indicators (grouped into equal 8-part tiles based upon how much the indicator has changed over the prior 3 months) to show the average future change in the employment rate, housing prices, or broad stock market index.&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;&amp;nbsp;&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Selecting the Data&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;The Federal Reserve site FRED hosts a wealth of economic data available at &lt;A href="https://fred.stlouisfed.org/" target="_blank" rel="noopener"&gt;https://fred.stlouisfed.org/&lt;/A&gt;. To select data elements, I first studied the Conference Board’s &lt;A href="https://www.conference-board.org/data/bcicountry.cfm?cid=1" target="_blank" rel="noopener"&gt;Index of Leading Indicators&lt;/A&gt; and searched for those data elements on FRED.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Some issues I encountered included:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Sample size issues: Lack of historical data for various metrics. Many FRED metrics are not available prior to 1992.&lt;/LI&gt;
&lt;LI&gt;Timeliness issues: Many FRED metrics are only updated quarterly, as opposed to monthly or daily. Using quarterly data was not an option because the 3-month lag in data would not enable a current view of the economy.&lt;/LI&gt;
&lt;LI&gt;Granularity issues: Some data is available by day while other data sets are by month. I accounted for this in calculations by using averages in DAX. For example, the calculation for “Prior 3-month change” calculation was implemented as an Average of values between 3 and 4 months prior which ensure smooth average of monthly data.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;EM&gt;Technical Solutions&lt;/EM&gt;&lt;/P&gt;
&lt;P&gt;Here are some advanced capabilities of Power BI that I utilized:&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Power BI web data sources using M-code
&lt;UL&gt;
&lt;LI&gt;To quickly integrate each metric, I used the Advanced Editor which enabled “find and replace” to integrate many metrics quickly.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Scheduled refreshes
&lt;UL&gt;
&lt;LI&gt;The data is scheduled to automatically refresh each day from the underlying data source.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Power BI DAX calculated tables and columns
&lt;UL&gt;
&lt;LI&gt;Complex DAX was written to perform complex time lag calculations such as Prior 3-month change for each leading indicator, and 10-12 month change for each dependent variable.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;LI&gt;Custom visuals
&lt;UL&gt;
&lt;LI&gt;Finally, to give more clarity to a complex story I used the custom visual called &lt;A href="https://store.office.com/en-us/app.aspx?assetid=WA104380950&amp;amp;sourcecorrid=ce8f8195-9d3d-49b2-8839-977f0cef0b48&amp;amp;searchapppos=0&amp;amp;ui=en-US&amp;amp;rs=en-US&amp;amp;ad=US&amp;amp;appredirect=false" target="_blank" rel="noopener"&gt;Enlighten Data Story visual&lt;/A&gt;. I highly recommend this visual.&lt;/LI&gt;
&lt;/UL&gt;
&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;STRONG&gt;Interesting Findings&lt;/STRONG&gt;&lt;/P&gt;
&lt;P&gt;A great dashboard leads to interesting discoveries within the data. While many of these statements are things I have heard before it was great to prove them to myself.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;UL&gt;
&lt;LI&gt;Stability is very good for growth. Note how Tile 4 and 5 contain the most positive values.&lt;/LI&gt;
&lt;LI&gt;Falling Industrial production and consumer confidence is quite negative.&lt;/LI&gt;
&lt;LI&gt;Home Prices seem to be more stable than the huge decline in 2008 would lead one to believe.&lt;/LI&gt;
&lt;LI&gt;The Stock Market is more volatile, and the correlations are weaker, but average returns have been greater.&lt;/LI&gt;
&lt;/UL&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What interesting discoveries can you make?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Evan Schmidt&lt;/P&gt;
&lt;P&gt;Decisive Data&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;img /&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiMGIxYjE2NTAtZWQzNC00NDRmLWI1M2QtMTYxOGU0MGRjNGNhIiwidCI6IjdlY2M4YWEwLTgzMGUtNGQ4Ni1hZjc4LTgzYTNkY2MyNjIzOCIsImMiOjZ9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2020 18:56:58 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/218886#M977</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-03T18:56:58Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis of Leading Economic Indicators by Decisive Data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/580662#M2395</link>
      <description>&lt;P&gt;The .pbix won't open. Could you upload again?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Dec 2018 16:16:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/580662#M2395</guid>
      <dc:creator>jasonjs</dc:creator>
      <dc:date>2018-12-06T16:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis of Leading Economic Indicators by Decisive Data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/1343292#M4533</link>
      <description>&lt;P&gt;Hi Evan&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Thank you for this great dashboard. It takes time to learn it to read. Could you please comment my findings?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1. On the first graph there are the "Avg 10-12 mo change" value and the "Current value" on top of it... I noticed that there's a shift on Date axis, befause the future value graph is 12 months shorter (see attachement Clipboard01.jpg). Is it intentional or is it a mistake?&lt;/P&gt;
&lt;P&gt;2. Am I right, that the Historical N-Tile Analysis is to show the quality of the model? When there are batterns on the rows, then the model results can be trusted?&lt;/P&gt;
&lt;P&gt;3. Is the "Current N-Tile" meant to show if we are currently out of the average?&lt;BR /&gt;4. On the bubble graph, what does the bubble size represent?&lt;/P&gt;
&lt;P&gt;&lt;BR /&gt;Regards,&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Viljar&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2020 07:22:01 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/1343292#M4533</guid>
      <dc:creator>Viljar_p</dc:creator>
      <dc:date>2020-09-03T07:22:01Z</dc:date>
    </item>
    <item>
      <title>Re: Analysis of Leading Economic Indicators by Decisive Data</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/1345443#M4536</link>
      <description>&lt;P&gt;&lt;BR /&gt;1) Thank you for your feedback. I have made some updates to this visual to make this more clear. There should be a 12 month lag between when the indicator (e.g. Consumer Sentiment) reading occured, and when the actaul change was measureable.&amp;nbsp;&amp;nbsp;&lt;BR /&gt;2) First note this is an informational dashboard vs a mathmatical model so I'm hesitant to use the word "trust". When there are stronger patterns on rows the indicator has has more consistent past results.&amp;nbsp;&lt;BR /&gt;3) The bottom right visual is meant to show what has happened historically over the future 12 months for each of the indicators. This shows the current reading for each indicator.&lt;BR /&gt;4) The bubble size is the same as the color, larger means a larger historical average future move.&lt;/P&gt;</description>
      <pubDate>Thu, 03 Sep 2020 19:14:52 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/Analysis-of-Leading-Economic-Indicators-by-Decisive-Data/m-p/1345443#M4536</guid>
      <dc:creator>Anonymous</dc:creator>
      <dc:date>2020-09-03T19:14:52Z</dc:date>
    </item>
  </channel>
</rss>

