<?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: Handling missing values in SAS Procedures</title>
    <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634101#M77942</link>
    <description>I want below out put&lt;BR /&gt;&lt;BR /&gt;Reporting Country_Territory_Area Total confirmecases Total confirmed new cases1 Total deaths Total new deaths1 Transmission classification Days since last reported case&lt;BR /&gt;Western Pacific Region&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Armenia 84 32 0 0 Local transmission 0&lt;BR /&gt;Croatia 81 16 0 0 Local transmission 0&lt;BR /&gt;Latvia 71 11 0 0 Imported cases only 0&lt;BR /&gt;Albania 59 2 2 1 Local transmission 0&lt;BR /&gt;Cyprus 58 25 0 0 Local transmission 0&lt;BR /&gt;Hungary 58 8 1 0 Local transmission 0&lt;BR /&gt;Malta 48 10 0 0 Imported cases only 0&lt;BR /&gt;Belarus 46 10 0 0 Local transmission 0&lt;BR /&gt;Georgia 38 4 0 0 Imported cases only 0&lt;BR /&gt;Bosnia and Herzegovina 36 7 0 0 Local transmission 0&lt;BR /&gt;Kazakhstan 36 3 0 0 Imported cases only 0&lt;BR /&gt;North Macedonia 36 5 0 0 Local transmission 0&lt;BR /&gt;Republic of Moldova 36 0 0 0 Local transmission 1&lt;BR /&gt;Azerbaijan 34 13 1 1 Imported cases only 0&lt;BR /&gt;Lithuania 26 1 0 0 Imported cases only 0&lt;BR /&gt;Liechtenstein 25 18 0 0 Imported cases only 0&lt;BR /&gt;Ukraine 16 7 2 0 Local transmission 0&lt;BR /&gt;Uzbekistan 16 0 0 0 Imported cases only 1&lt;BR /&gt;Monaco 9 0 0 0 Under investigation 2&lt;BR /&gt;Kyrgyzstan 3 3 0 0 Under investigation 0&lt;BR /&gt;Montenegro 2 0 0 0 Imported cases only 1&lt;BR /&gt;Holy See 1 0 0 0 Under investigation 12&lt;BR /&gt;Territories**&lt;BR /&gt;Faroe Islands 58 11 0 0 Imported cases only 0&lt;BR /&gt;Andorra 39 23 0 0 Imported cases only 0&lt;BR /&gt;Gibraltar 8 5 0 0 Under investigation 0&lt;BR /&gt;Jersey 5 0 0 0 Imported cases only 1&lt;BR /&gt;Greenland 2 0 0 0 Under investigation 1&lt;BR /&gt;Guernsey 1 0 0 0 Imported cases only 9&lt;BR /&gt;South-East Asia Region&lt;BR /&gt;Indonesia 227 55 19 14 Local transmission 0&lt;BR /&gt;Thailand 212 35 1 0 Local transmission 0&lt;BR /&gt;India 151 14 3 0 Local transmission 0&lt;BR /&gt;Sri Lanka 42 13 0 0 Local transmission 0&lt;BR /&gt;Maldives 13 0 0 0 Local transmission 3&lt;BR /&gt;Bangladesh 10 2 0 0 Local transmission 0&lt;BR /&gt;Bhutan 1 0 0 0 Imported cases only 12&lt;BR /&gt;Nepal 1 0 0 0 Imported cases only 55&lt;BR /&gt;</description>
    <pubDate>Mon, 23 Mar 2020 13:38:02 GMT</pubDate>
    <dc:creator>BrahmanandaRao</dc:creator>
    <dc:date>2020-03-23T13:38:02Z</dc:date>
    <item>
      <title>Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633514#M77892</link>
      <description>&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc import datafile ='Filelocation'
out=covid19
dbms=xlsx;
run;
use attachment xlsx file&lt;BR /&gt;&lt;BR /&gt;i&amp;nbsp;am&amp;nbsp;trying&amp;nbsp;below&amp;nbsp;code&amp;nbsp;but&amp;nbsp;it's&amp;nbsp;not&amp;nbsp;get&amp;nbsp;correct&amp;nbsp;ouput&amp;nbsp;&lt;BR /&gt;proc sql;
select * from Covid19
where Reporting_Country_Territory_Area IN( 'European Region'	'South-East Asia Region');
quit;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;DIV class="mceNonEditable lia-copypaste-placeholder"&gt;&amp;nbsp;&lt;/DIV&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Hi Every one&lt;/P&gt;&lt;P&gt;How to Filter&amp;nbsp; missing&amp;nbsp; values in the below&amp;nbsp; attachment&amp;nbsp;&lt;/P&gt;&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql;
select * from Covid19
where Reporting_Country_Territory_Area IN( 'European Region'	'South-East Asia Region');
quit;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 21 Mar 2020 05:58:52 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633514#M77892</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-21T05:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633515#M77893</link>
      <description>&lt;P&gt;Please provide example data in self-contained data steps with datalines.&lt;/P&gt;
&lt;P&gt;If external files are provided, add the code used to import them into SAS.&lt;/P&gt;
&lt;P&gt;Which missing values do you need filtered? Do you want to replace them with something else, or do you want observations containing the missing values deleted from the resulting dataset?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 09:48:31 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633515#M77893</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-20T09:48:31Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633517#M77894</link>
      <description>Reporting Country_Territory_Area Total confirmecases Total confirmed new cases1 Total deaths Total new deaths1 Transmission classification Days since last reported case&lt;BR /&gt;Western Pacific Region&lt;BR /&gt;China 81174 58 3242 11 Local transmission 0&lt;BR /&gt;Republic of Korea 8413 93 84 3 Local transmission 0&lt;BR /&gt;Japan 873 44 29 1 Local transmission 0&lt;BR /&gt;Malaysia 673 120 2 2 Local transmission 0&lt;BR /&gt;Australia 510 96 6 1 Local transmission 0&lt;BR /&gt;Singapore 313 47 0 0 Local transmission 0&lt;BR /&gt;Philippines 187 0 14 2 Local transmission 1&lt;BR /&gt;Viet Nam 66 5 0 0 Local transmission 0&lt;BR /&gt;Brunei Darussalam 56 2 0 0 Local transmission 0&lt;BR /&gt;Cambodia 35 11 0 0 Local transmission 0&lt;BR /&gt;New Zealand 20 9 0 0 Local transmission 0&lt;BR /&gt;Mongolia 5 1 0 0 Imported cases only 0&lt;BR /&gt;Territories**&lt;BR /&gt;Guam 5 2 0 0 Local transmission 0&lt;BR /&gt;French Polynesia 3 0 0 0 Imported cases only 3&lt;BR /&gt;European Region&lt;BR /&gt;Italy 35713 4207 2978 473 Local transmission 0&lt;BR /&gt;Spain 13716 2538 598 107 Local transmission 0&lt;BR /&gt;France 9043 0 244 0 Local transmission 1&lt;BR /&gt;Germany 8198 1042 13 0 Local transmission 0&lt;BR /&gt;Switzerland 3010 353 21 2 Local transmission 0&lt;BR /&gt;The United Kingdom 2630 672 103 0 Local transmission 0&lt;BR /&gt;Netherlands 2051 0 58 0 Local transmission 1&lt;BR /&gt;Austria 1646 314 4 1 Local transmission 0&lt;BR /&gt;Belgium 1486 0 14 0 Local transmission 1&lt;BR /&gt;Norway 1423 115 3 0 Local transmission 0&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Mar 2020 09:56:08 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633517#M77894</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-20T09:56:08Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633519#M77895</link>
      <description>&lt;P&gt;You have not provided a working data step with datalines, so I still have only a very rudimentary idea what your data looks like. And you have not answered my questions.&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 10:02:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633519#M77895</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-20T10:02:02Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633520#M77896</link>
      <description>data covid19;&lt;BR /&gt;infile datalines;&lt;BR /&gt;input Reporting Country_Territory_Area Total confirmecases Total confirmed new cases1 Total deaths Total new deaths1 Transmission classification Days since last reported case&lt;BR /&gt;Western Pacific Region ;&lt;BR /&gt;cards;&lt;BR /&gt;China 81174 58 3242 11 Local transmission 0&lt;BR /&gt;Republic of Korea 8413 93 84 3 Local transmission 0&lt;BR /&gt;Japan 873 44 29 1 Local transmission 0&lt;BR /&gt;Malaysia 673 120 2 2 Local transmission 0&lt;BR /&gt;Australia 510 96 6 1 Local transmission 0&lt;BR /&gt;Singapore 313 47 0 0 Local transmission 0&lt;BR /&gt;Philippines 187 0 14 2 Local transmission 1&lt;BR /&gt;Viet Nam 66 5 0 0 Local transmission 0&lt;BR /&gt;Brunei Darussalam 56 2 0 0 Local transmission 0&lt;BR /&gt;Cambodia 35 11 0 0 Local transmission 0&lt;BR /&gt;New Zealand 20 9 0 0 Local transmission 0&lt;BR /&gt;Mongolia 5 1 0 0 Imported cases only 0&lt;BR /&gt;Territories**&lt;BR /&gt;Guam 5 2 0 0 Local transmission 0&lt;BR /&gt;French Polynesia 3 0 0 0 Imported cases only 3&lt;BR /&gt;European Region&lt;BR /&gt;Italy 35713 4207 2978 473 Local transmission 0&lt;BR /&gt;Spain 13716 2538 598 107 Local transmission 0&lt;BR /&gt;France 9043 0 244 0 Local transmission 1&lt;BR /&gt;Germany 8198 1042 13 0 Local transmission 0&lt;BR /&gt;Switzerland 3010 353 21 2 Local transmission 0&lt;BR /&gt;The United Kingdom 2630 672 103 0 Local transmission 0&lt;BR /&gt;Netherlands 2051 0 58 0 Local transmission 1&lt;BR /&gt;Austria 1646 314 4 1 Local transmission 0&lt;BR /&gt;Belgium 1486 0 14 0 Local transmission 1&lt;BR /&gt;Norway 1423 115 3 0 Local transmission 0&lt;BR /&gt;&lt;BR /&gt;;&lt;BR /&gt;run;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;</description>
      <pubDate>Fri, 20 Mar 2020 10:04:45 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633520#M77896</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-20T10:04:45Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633531#M77898</link>
      <description>&lt;P&gt;How does this answer &lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/11562"&gt;@Kurt_Bremser&lt;/a&gt; 's questions?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 10:41:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633531#M77898</guid>
      <dc:creator>PaigeMiller</dc:creator>
      <dc:date>2020-03-20T10:41:29Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633613#M77907</link>
      <description>&lt;P&gt;You still have not answered my questions, and this is the log from your data step:&lt;/P&gt;
&lt;PRE&gt;27         data covid19;
28         infile datalines;
29         input Reporting Country_Territory_Area Total confirmecases Total confirmed new cases1 Total deaths Total new deaths1
29       ! Transmission classification Days since last reported case
30         Western Pacific Region ;
31         cards;

NOTE: Invalid data for Reporting in line 32 1-5.
NOTE: Invalid data for confirmed in line 32 24-28.
NOTE: Invalid data for new in line 32 30-41.
NOTE: Invalid data for Total in line 33 1-8.
NOTE: Invalid data for deaths in line 33 10-11.
NOTE: Invalid data for Total in line 33 13-17.
NOTE: Invalid data for Days in line 33 32-36.
NOTE: Invalid data for since in line 33 38-49.
NOTE: Invalid data for reported in line 34 1-5.
REGEL:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0                     
34         Japan 873 44 29 1 Local transmission 0
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
Reporting=. Country_Territory_Area=81174 Total=. confirmecases=3242 confirmed=. new=8413 cases1=0 deaths=. deaths1=93
Transmission=84 classification=3 Days=. since=. last=0 reported=. case=873 Western=44 Pacific=29 Region=1 _ERROR_=1 _N_=1
NOTE: Invalid data for Reporting in line 35 1-8.
NOTE: Invalid data for confirmed in line 35 22-26.
NOTE: Invalid data for new in line 35 28-39.
NOTE: Invalid data for Total in line 36 1-9.
NOTE: Invalid data for Transmission in line 36 22-26.
NOTE: Invalid data for classification in line 36 28-39.
NOTE: Invalid data for since in line 37 1-9.
NOTE: Invalid data for Pacific in line 37 22-26.
NOTE: Invalid data for Region in line 37 28-39.
2                                                          Das SAS System                               09:12 Friday, March 20, 2020

REGEL:     ----+----1----+----2----+----3----+----4----+----5----+----6----+----7----+----8----+----9----+----0                     
37         Singapore 313 47 0 0 Local transmission 0
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
Reporting=. Country_Territory_Area=673 Total=96 confirmecases=2 confirmed=. new=6 cases1=0 deaths=510 deaths1=1 Transmission=.
classification=. Days=0 since=. last=313 reported=47 case=0 Western=0 Pacific=. Region=. _ERROR_=1 _N_=2
NOTE: Invalid data for Reporting in line 38 1-11.
NOTE: Invalid data for confirmed in line 38 24-28.
NOTE: Invalid data for new in line 38 30-41.
NOTE: Invalid data for Total in line 39 1-4.
NOTE: Invalid data for deaths in line 39 6-8.
NOTE: Invalid data for classification in line 39 19-23.
NOTE: Invalid data for Days in line 39 25-36.
NOTE: Invalid data for last in line 40 1-6.
NOTE: Invalid data for reported in line 40 8-17.
40         Brunei Darussalam 56 2 0 0 Local transmission 0
NOTE: Invalid data errors for file CARDS occurred outside the printed range.
NOTE: Increase available buffer lines with the INFILE n= option.
Reporting=. Country_Territory_Area=187 Total=66 confirmecases=14 confirmed=. new=5 cases1=1 deaths=. deaths1=0 Transmission=0
classification=. Days=. since=0 last=. reported=. case=56 Western=2 Pacific=0 Region=0 _ERROR_=1 _N_=3
NOTE: Invalid data for Reporting in line 41 1-8.
NOTE: Invalid data for confirmed in line 41 20-24.
NOTE: Invalid data for new in line 41 26-37.
NOTE: Invalid data for Total in line 42 1-3.
NOTE: Invalid data for deaths in line 42 5-11.
NOTE: Invalid data for classification in line 42 22-26.
NOTE: Invalid data for Days in line 42 28-39.
NOTE: Invalid data for last in line 43 1-8.
NOTE: Invalid data for Region in line 43 18-25.
&lt;/PRE&gt;
&lt;P&gt;If you are not willing to spend at least a little effort (and test&amp;nbsp;&lt;EM&gt;your own&lt;/EM&gt; data step), why should &lt;U&gt;we&lt;/U&gt;?&lt;/P&gt;</description>
      <pubDate>Fri, 20 Mar 2020 14:27:01 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633613#M77907</guid>
      <dc:creator>Kurt_Bremser</dc:creator>
      <dc:date>2020-03-20T14:27:01Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633810#M77915</link>
      <description>&lt;P&gt;can Any one&amp;nbsp; do this problem&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2020 10:53:33 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633810#M77915</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-21T10:53:33Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633848#M77917</link>
      <description>&lt;P&gt;yes, sure but could you fix your input statement first.&amp;nbsp; If there are spaces in the c=variable name, re-write them as 'name with&amp;nbsp; space'n otherwise the vars do not match the data.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Also, what's the question?&lt;/P&gt;</description>
      <pubDate>Sat, 21 Mar 2020 19:14:53 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/633848#M77917</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-03-21T19:14:53Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634010#M77936</link>
      <description>&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/265860"&gt;@BrahmanandaRao&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;can Any one&amp;nbsp; do this problem&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;Below code will read the data from the Excel - which is messy.&lt;/P&gt;
&lt;P&gt;Not really sure what the problem is now. You get missing values in the SAS table because there are missing values/cells in the Excel sheet.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;options validvarname=v7;
proc import 
  datafile ='~/test/covid19 updated_onMar20-2020.xlsx'
  out=covid19
  dbms=xlsx
  replace;
  getnames=yes;
run;

proc sql;
select * 
from Covid19
where upcase(Reporting_Country_Territory_Area) IN('EUROPEAN REGION','SOUTH-EAST ASIA REGION');
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;And here an option how you can at least delete observations where all variables are missing.&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;proc sql noprint;
  select count(name) into :n_vars trimmed
  from dictionary.columns
  where libname='WORK' and memname='COVID19'
  ;
quit;
data covid19;
  set covid19;
  if cmiss(of _all_)=&amp;amp;n_vars then delete;
run;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 22 Mar 2020 23:20:54 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634010#M77936</guid>
      <dc:creator>Patrick</dc:creator>
      <dc:date>2020-03-22T23:20:54Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634101#M77942</link>
      <description>I want below out put&lt;BR /&gt;&lt;BR /&gt;Reporting Country_Territory_Area Total confirmecases Total confirmed new cases1 Total deaths Total new deaths1 Transmission classification Days since last reported case&lt;BR /&gt;Western Pacific Region&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BR /&gt;Armenia 84 32 0 0 Local transmission 0&lt;BR /&gt;Croatia 81 16 0 0 Local transmission 0&lt;BR /&gt;Latvia 71 11 0 0 Imported cases only 0&lt;BR /&gt;Albania 59 2 2 1 Local transmission 0&lt;BR /&gt;Cyprus 58 25 0 0 Local transmission 0&lt;BR /&gt;Hungary 58 8 1 0 Local transmission 0&lt;BR /&gt;Malta 48 10 0 0 Imported cases only 0&lt;BR /&gt;Belarus 46 10 0 0 Local transmission 0&lt;BR /&gt;Georgia 38 4 0 0 Imported cases only 0&lt;BR /&gt;Bosnia and Herzegovina 36 7 0 0 Local transmission 0&lt;BR /&gt;Kazakhstan 36 3 0 0 Imported cases only 0&lt;BR /&gt;North Macedonia 36 5 0 0 Local transmission 0&lt;BR /&gt;Republic of Moldova 36 0 0 0 Local transmission 1&lt;BR /&gt;Azerbaijan 34 13 1 1 Imported cases only 0&lt;BR /&gt;Lithuania 26 1 0 0 Imported cases only 0&lt;BR /&gt;Liechtenstein 25 18 0 0 Imported cases only 0&lt;BR /&gt;Ukraine 16 7 2 0 Local transmission 0&lt;BR /&gt;Uzbekistan 16 0 0 0 Imported cases only 1&lt;BR /&gt;Monaco 9 0 0 0 Under investigation 2&lt;BR /&gt;Kyrgyzstan 3 3 0 0 Under investigation 0&lt;BR /&gt;Montenegro 2 0 0 0 Imported cases only 1&lt;BR /&gt;Holy See 1 0 0 0 Under investigation 12&lt;BR /&gt;Territories**&lt;BR /&gt;Faroe Islands 58 11 0 0 Imported cases only 0&lt;BR /&gt;Andorra 39 23 0 0 Imported cases only 0&lt;BR /&gt;Gibraltar 8 5 0 0 Under investigation 0&lt;BR /&gt;Jersey 5 0 0 0 Imported cases only 1&lt;BR /&gt;Greenland 2 0 0 0 Under investigation 1&lt;BR /&gt;Guernsey 1 0 0 0 Imported cases only 9&lt;BR /&gt;South-East Asia Region&lt;BR /&gt;Indonesia 227 55 19 14 Local transmission 0&lt;BR /&gt;Thailand 212 35 1 0 Local transmission 0&lt;BR /&gt;India 151 14 3 0 Local transmission 0&lt;BR /&gt;Sri Lanka 42 13 0 0 Local transmission 0&lt;BR /&gt;Maldives 13 0 0 0 Local transmission 3&lt;BR /&gt;Bangladesh 10 2 0 0 Local transmission 0&lt;BR /&gt;Bhutan 1 0 0 0 Imported cases only 12&lt;BR /&gt;Nepal 1 0 0 0 Imported cases only 55&lt;BR /&gt;</description>
      <pubDate>Mon, 23 Mar 2020 13:38:02 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634101#M77942</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-23T13:38:02Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634118#M77943</link>
      <description>As I mentioned earlier, your list of variables does not match the data you have provided. How would we know what data is missing</description>
      <pubDate>Mon, 23 Mar 2020 14:14:36 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634118#M77943</guid>
      <dc:creator>ghosh</dc:creator>
      <dc:date>2020-03-23T14:14:36Z</dc:date>
    </item>
    <item>
      <title>Re: Handling missing values</title>
      <link>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634155#M77944</link>
      <description>Filter region wise</description>
      <pubDate>Mon, 23 Mar 2020 16:11:26 GMT</pubDate>
      <guid>https://communities.sas.com/t5/SAS-Procedures/Handling-missing-values/m-p/634155#M77944</guid>
      <dc:creator>BrahmanandaRao</dc:creator>
      <dc:date>2020-03-23T16:11:26Z</dc:date>
    </item>
  </channel>
</rss>

