<?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 COVID19 Outbreak in Data Stories Gallery</title>
    <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1012395#M3700</link>
    <description>&lt;P&gt;COVID-19 Dashboard that uses&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/CSSEGISandData/COVID-19" target="_blank" rel="nofollow noopener noreferrer"&gt;John Hopkins&lt;/A&gt; data todisplay metrics related to confirmed cases, fatilities and recoveries as well as an animated scatter chart to visualize the progression of infection and fatalities over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Dashboard will be updated frequently during the next few days to add more visualizes and enhance existing ones. All comments are of course welcome.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiZGJjZDU1ZDAtNjhkYi00OTdjLWIwZWUtMmQ1ZGQ1NWFlNjI4IiwidCI6ImI2MWEwNzAxLTQyNWUtNGRmYi05OTlmLTFmMDRhMmM5M2MxYSJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
    <pubDate>Tue, 07 Apr 2020 10:05:45 GMT</pubDate>
    <dc:creator>OpenDataLab</dc:creator>
    <dc:date>2020-04-07T10:05:45Z</dc:date>
    <item>
      <title>COVID19 Outbreak</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1012395#M3700</link>
      <description>&lt;P&gt;COVID-19 Dashboard that uses&lt;SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;A href="https://github.com/CSSEGISandData/COVID-19" target="_blank" rel="nofollow noopener noreferrer"&gt;John Hopkins&lt;/A&gt; data todisplay metrics related to confirmed cases, fatilities and recoveries as well as an animated scatter chart to visualize the progression of infection and fatalities over time.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The Dashboard will be updated frequently during the next few days to add more visualizes and enhance existing ones. All comments are of course welcome.&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="reportid hidden"&gt;eyJrIjoiZGJjZDU1ZDAtNjhkYi00OTdjLWIwZWUtMmQ1ZGQ1NWFlNjI4IiwidCI6ImI2MWEwNzAxLTQyNWUtNGRmYi05OTlmLTFmMDRhMmM5M2MxYSJ9&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Apr 2020 10:05:45 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1012395#M3700</guid>
      <dc:creator>OpenDataLab</dc:creator>
      <dc:date>2020-04-07T10:05:45Z</dc:date>
    </item>
    <item>
      <title>Re: COVID19 Outbreak</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1023548#M3749</link>
      <description>&lt;P&gt;How you calculate the grow rate?&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 01:50:35 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1023548#M3749</guid>
      <dc:creator>manito969</dc:creator>
      <dc:date>2020-04-14T01:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: COVID19 Outbreak</title>
      <link>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1023752#M3751</link>
      <description>&lt;P&gt;Logical, it's:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;1) Get the running total cases count for today, divide that by 2.&lt;/P&gt;
&lt;P&gt;2) Find the latest date where the running total of cases is less than the current date, and the running total is greater than lookup value calculated in step 1.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;3) Work out the number of days difference.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Here is the code.&amp;nbsp; Hopefully this helps.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;Growth Rate =
VAR varLookupRate =
    CALCULATE ( DIVIDE ( [Confirmed RT], 2 ) )
VAR varCurrentDate =
    CALCULATE (
        MAX ( 'Date'[Date] ),
        FILTER ( 'Date', NOT ISBLANK ( [Confirmed RT] ) )
    )
VAR varHalfDate =
    CALCULATE (
        MAX ( 'Date'[Date] ),
        FILTER (
            ALL ( 'Date' ),
            'Date'[Date] &amp;lt; varCurrentDate
                &amp;amp;&amp;amp; [Confirmed RT] &amp;lt;= varLookupRate
        )
    )
VAR varResult =
    IF (
        NOT ISBLANK ( [Confirmed RT] ),
        DATEDIFF ( varHalfDate, varCurrentDate, DAY ),
        BLANK ()
    )
RETURN
    varResult
&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Apr 2020 04:50:33 GMT</pubDate>
      <guid>https://community.fabric.microsoft.com/t5/Data-Stories-Gallery/COVID19-Outbreak/m-p/1023752#M3751</guid>
      <dc:creator>OpenDataLab</dc:creator>
      <dc:date>2020-04-14T04:50:33Z</dc:date>
    </item>
  </channel>
</rss>

