<?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: Wondering if SAS could recognize Verbs in a sentence in New SAS User</title>
    <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517340#M3319</link>
    <description>&lt;P&gt;Are you using SAS EM with the Text Analysis or Via with Text analysis? If not, do you have a list of 'verbs' that you're planning to identify? Or in general.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's possible, I usually parse the sentence to each work, link each word to a lookup table - may need to find the &lt;A href="https://en.wikipedia.org/wiki/Stemming" target="_self"&gt;stem&lt;/A&gt; for each word, ie running becomes run.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an example of how I did it for finding sentiment, but the concept is similar. I have vague recollections that once upon a time SAS had either a Dictionary or Spelling PROC that had this, but not sure of the current status quo in SAS Base.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Create sample data;
data random_sentences;
    infile cards truncover;
    informat sentence $256.;
    input sentence $256.;
    cards;
This is a random sentence
This is another random sentence
Happy Birthday
My job sucks.
This is a good idea, not.
This is an awesome idea!
How are you today?
Does this make sense?
Have a great day!
;
    ;
    ;
    ;

*Partition into words;
data f1;
    set random_sentences;
    id=_n_;
    nwords=countw(sentence);
    nchar=length(compress(sentence));

    do word_order=1 to nwords;
        word=scan(sentence, word_order);
        output;
    end;
run;

*Add happiness index and pos;

proc sql ;
    create table scored as 
    select a.*, b.happiness_rank, c.pos, c.pos1
    from f1 as a 
    left join ta.sentiment as b 
    on a.word=b.word 
    left join ta.corpus as c
    on a.word=c.word
    order by sentence, word_order;
quit;

*Calculate sentence happiness score;
proc sql;
create table sentence_sentiment as
select distinct sentence, sum(happiness_rank) as sentiment
from scored
group by id;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/239423"&gt;@d6k5d3&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello experts!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way to let SAS recognize what a verb is, and extract that verb for me? In my case I have rows of economic news, and I am supposed to extract news specific to speeches, talks, briefings, conferences etc. And I don't want to miss any observation. Being able to identify the verbs in the strings in this case seems to be an easy problem solver. For example, the rows of news would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;News&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;Paulson Hosts Conference on Capital Markets in Washington&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury Under Secretary Steel Briefing on Capital Markets&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Kimmitt Talks About Trade, the Economy in Berlin&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Open Market Committee Meets on Interest Rates, Economy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Bernanke Speaks at Washington Credit Risk Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;POSTPONED: Fed's Kohn Testifies at Hearing on ILCs&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Kroszner Speaks on Credit Markets in North Carolina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Moderates Panel on Liquidity Risk at Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Speaks to N.J. Bankers in West Palm Beach&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Geithner Speaks at Credit Markets Symposium&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Gives Introductory Remarks at Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Mishkin Speaks on Inflation Dynamics in San Francisco&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Pianalto Speaks in Prague on Currencies&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Braunstein Testifies Before House Subcommittee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Moskow Speaks in Shanghai on U.S. Monetary Policy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Paulson Testifies to House Panel on Budget Request&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Testifies Before Joint Economic Committee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Paulson Testifies to Senate Panel on Budget Request&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;POSTPONED: Fed's Kohn Testifies on Industrial Loan Companies&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Gives Opening Remarks at Washington Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Speaks at Fed Community Development Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;U.S. Fed's Williams Moderates Panel on Financial Stability&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks in Austin on U.S. Economy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Mishkin Speaks at Bridgewater College in Virginia&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks on Topic to Be Determined in McAllen&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Speaks on Federal Reserve in Delaware&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Speaks to Economists in North Carolina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Speaks on Market Discipline, Regulation in New York&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Moskow Speaks on Economic Outlook in Illinois&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Adams Holds Press Conference Ahead of G-7 Meeting&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks in Houston on Globalization&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Paulson Holds a Press Conference After G-7 Meets in Washington&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;… … … … …&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would you say about how efficiently I can do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Much thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 30 Nov 2018 03:13:29 GMT</pubDate>
    <dc:creator>Reeza</dc:creator>
    <dc:date>2018-11-30T03:13:29Z</dc:date>
    <item>
      <title>Wondering if SAS could recognize Verbs in a sentence</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517338#M3317</link>
      <description>&lt;P&gt;Hello experts!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Is there any way to let SAS recognize what a verb is, and extract that verb for me? In my case I have rows of economic news, and I am supposed to extract news specific to speeches, talks, briefings, conferences etc. And I don't want to miss any observation. Being able to identify the verbs in the strings in this case seems to be an easy problem solver. For example, the rows of news would be:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;U&gt;News&lt;/U&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;Paulson Hosts Conference on Capital Markets in Washington&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Treasury Under Secretary Steel Briefing on Capital Markets&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Treasury's Kimmitt Talks About Trade, the Economy in Berlin&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Open Market Committee Meets on Interest Rates, Economy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Bernanke Speaks at Washington Credit Risk Conference&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;POSTPONED: Fed's Kohn Testifies at Hearing on ILCs&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Kroszner Speaks on Credit Markets in North Carolina&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Lacker Moderates Panel on Liquidity Risk at Conference&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Plosser Speaks to N.J. Bankers in West Palm Beach&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Geithner Speaks at Credit Markets Symposium&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Lacker Gives Introductory Remarks at Conference&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Mishkin Speaks on Inflation Dynamics in San Francisco&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Pianalto Speaks in Prague on Currencies&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Braunstein Testifies Before House Subcommittee&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Moskow Speaks in Shanghai on U.S. Monetary Policy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Treasury's Paulson Testifies to House Panel on Budget Request&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bernanke Testifies Before Joint Economic Committee&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Treasury's Paulson Testifies to Senate Panel on Budget Request&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;POSTPONED: Fed's Kohn Testifies on Industrial Loan Companies&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Plosser Gives Opening Remarks at Washington Conference&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bernanke Speaks at Fed Community Development Conference&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;U.S. Fed's Williams Moderates Panel on Financial Stability&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Fisher Speaks in Austin on U.S. Economy&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Mishkin Speaks at Bridgewater College in Virginia&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Fisher Speaks on Topic to Be Determined in McAllen&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Plosser Speaks on Federal Reserve in Delaware&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Lacker Speaks to Economists in North Carolina&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Bernanke Speaks on Market Discipline, Regulation in New York&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Moskow Speaks on Economic Outlook in Illinois&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Treasury's Adams Holds Press Conference Ahead of G-7 Meeting&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Fed's Fisher Speaks in Houston on Globalization&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;Paulson Holds a Press Conference After G-7 Meets in Washington&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;… … … … …&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;What would you say about how efficiently I can do this?&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Much thanks!&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 03:08:10 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517338#M3317</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-11-30T03:08:10Z</dc:date>
    </item>
    <item>
      <title>Re: Wondering if SAS could recognize Verbs in a sentence</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517340#M3319</link>
      <description>&lt;P&gt;Are you using SAS EM with the Text Analysis or Via with Text analysis? If not, do you have a list of 'verbs' that you're planning to identify? Or in general.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;It's possible, I usually parse the sentence to each work, link each word to a lookup table - may need to find the &lt;A href="https://en.wikipedia.org/wiki/Stemming" target="_self"&gt;stem&lt;/A&gt; for each word, ie running becomes run.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;This is an example of how I did it for finding sentiment, but the concept is similar. I have vague recollections that once upon a time SAS had either a Dictionary or Spelling PROC that had this, but not sure of the current status quo in SAS Base.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;PRE&gt;&lt;CODE class=" language-sas"&gt;*Create sample data;
data random_sentences;
    infile cards truncover;
    informat sentence $256.;
    input sentence $256.;
    cards;
This is a random sentence
This is another random sentence
Happy Birthday
My job sucks.
This is a good idea, not.
This is an awesome idea!
How are you today?
Does this make sense?
Have a great day!
;
    ;
    ;
    ;

*Partition into words;
data f1;
    set random_sentences;
    id=_n_;
    nwords=countw(sentence);
    nchar=length(compress(sentence));

    do word_order=1 to nwords;
        word=scan(sentence, word_order);
        output;
    end;
run;

*Add happiness index and pos;

proc sql ;
    create table scored as 
    select a.*, b.happiness_rank, c.pos, c.pos1
    from f1 as a 
    left join ta.sentiment as b 
    on a.word=b.word 
    left join ta.corpus as c
    on a.word=c.word
    order by sentence, word_order;
quit;

*Calculate sentence happiness score;
proc sql;
create table sentence_sentiment as
select distinct sentence, sum(happiness_rank) as sentiment
from scored
group by id;
quit;&lt;/CODE&gt;&lt;/PRE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;BLOCKQUOTE&gt;&lt;HR /&gt;&lt;a href="https://communities.sas.com/t5/user/viewprofilepage/user-id/239423"&gt;@d6k5d3&lt;/a&gt;&amp;nbsp;wrote:&lt;BR /&gt;
&lt;P&gt;Hello experts!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Is there any way to let SAS recognize what a verb is, and extract that verb for me? In my case I have rows of economic news, and I am supposed to extract news specific to speeches, talks, briefings, conferences etc. And I don't want to miss any observation. Being able to identify the verbs in the strings in this case seems to be an easy problem solver. For example, the rows of news would be:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;U&gt;News&lt;/U&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;TABLE&gt;
&lt;TBODY&gt;
&lt;TR&gt;
&lt;TD&gt;Paulson Hosts Conference on Capital Markets in Washington&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury Under Secretary Steel Briefing on Capital Markets&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Kimmitt Talks About Trade, the Economy in Berlin&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Open Market Committee Meets on Interest Rates, Economy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Bernanke Speaks at Washington Credit Risk Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;POSTPONED: Fed's Kohn Testifies at Hearing on ILCs&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Kroszner Speaks on Credit Markets in North Carolina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Moderates Panel on Liquidity Risk at Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Speaks to N.J. Bankers in West Palm Beach&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Geithner Speaks at Credit Markets Symposium&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Gives Introductory Remarks at Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Mishkin Speaks on Inflation Dynamics in San Francisco&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Pianalto Speaks in Prague on Currencies&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Braunstein Testifies Before House Subcommittee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Moskow Speaks in Shanghai on U.S. Monetary Policy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Paulson Testifies to House Panel on Budget Request&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Testifies Before Joint Economic Committee&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Paulson Testifies to Senate Panel on Budget Request&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;POSTPONED: Fed's Kohn Testifies on Industrial Loan Companies&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Gives Opening Remarks at Washington Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Speaks at Fed Community Development Conference&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;U.S. Fed's Williams Moderates Panel on Financial Stability&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks in Austin on U.S. Economy&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Mishkin Speaks at Bridgewater College in Virginia&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks on Topic to Be Determined in McAllen&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Plosser Speaks on Federal Reserve in Delaware&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Lacker Speaks to Economists in North Carolina&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Bernanke Speaks on Market Discipline, Regulation in New York&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Moskow Speaks on Economic Outlook in Illinois&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Treasury's Adams Holds Press Conference Ahead of G-7 Meeting&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Fed's Fisher Speaks in Houston on Globalization&lt;/TD&gt;
&lt;/TR&gt;
&lt;TR&gt;
&lt;TD&gt;Paulson Holds a Press Conference After G-7 Meets in Washington&lt;/TD&gt;
&lt;/TR&gt;
&lt;/TBODY&gt;
&lt;/TABLE&gt;
&lt;P&gt;… … … … …&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;What would you say about how efficiently I can do this?&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Much thanks!&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Regards.&lt;/P&gt;
&lt;HR /&gt;&lt;/BLOCKQUOTE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 03:13:29 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517340#M3319</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-30T03:13:29Z</dc:date>
    </item>
    <item>
      <title>Re: Wondering if SAS could recognize Verbs in a sentence</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517342#M3321</link>
      <description>Ah...it was PROC SPELL. &lt;A href="http://www.sascommunity.org/wiki/Proc_spell" target="_blank"&gt;http://www.sascommunity.org/wiki/Proc_spell&lt;/A&gt;</description>
      <pubDate>Fri, 30 Nov 2018 03:15:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517342#M3321</guid>
      <dc:creator>Reeza</dc:creator>
      <dc:date>2018-11-30T03:15:51Z</dc:date>
    </item>
    <item>
      <title>Re: Wondering if SAS could recognize Verbs in a sentence</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517345#M3322</link>
      <description>This seems to be a spell checker. I have no issues with spelling. I need SAS to recognize which words are verbs. Googling PROC SPELL doesn't give much insight.</description>
      <pubDate>Fri, 30 Nov 2018 03:26:38 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517345#M3322</guid>
      <dc:creator>d6k5d3</dc:creator>
      <dc:date>2018-11-30T03:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: Wondering if SAS could recognize Verbs in a sentence</title>
      <link>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517348#M3323</link>
      <description>&lt;P&gt;It is worth noting that SAS is not a word processor. As far as I'm aware SAS does not contain a grammatical rule engine which would enable recognising word types.&lt;/P&gt;</description>
      <pubDate>Fri, 30 Nov 2018 04:03:57 GMT</pubDate>
      <guid>https://communities.sas.com/t5/New-SAS-User/Wondering-if-SAS-could-recognize-Verbs-in-a-sentence/m-p/517348#M3323</guid>
      <dc:creator>SASKiwi</dc:creator>
      <dc:date>2018-11-30T04:03:57Z</dc:date>
    </item>
  </channel>
</rss>

