LISTSERV at the University of Georgia
Menubar Imagemap
Home Browse Manage Request Manuals Register
Previous (more recent) messageNext (less recent) messagePrevious (more recent) in topicNext (less recent) in topicPrevious (more recent) by same authorNext (less recent) by same authorPrevious page (October 2009, week 5)Back to main SAS-L pageJoin or leave SAS-L (or change settings)ReplyPost a new messageSearchProportional fontNon-proportional font
Date:         Thu, 29 Oct 2009 16:25:18 +0100
Reply-To:     Fernández Rodríguez, Dani
              <DFernandez@CST.CAT>
Sender:       "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From:         Fernández Rodríguez, Dani
              <DFernandez@CST.CAT>
Subject:      Re: Text mining Schwarzenegger message
Comments: To: Sigurd Hermansen <HERMANS1@WESTAT.com>
In-Reply-To:  <FE10F31634E7F34B87AA143D5960854111CCDBC1@EX-CMS01.westat.com>
Content-Type: text/plain; charset="iso-8859-1"

Hi Sigurd,

This is not what I want cos when I am gonna transpose it I want to get the first rows in the ouput as:

1 Fuck 2 onai 3 rnrc 4 eek ...

Consider this sample text:

data Schwarzenegger_text; input text $8.; cards; For some unnecess care are kicks th ; run;

Daniel Fernandez. Barcelona

-----Mensaje original----- De: Sigurd Hermansen [mailto:HERMANS1@WESTAT.com] Enviado el: dijous, 29 / octubre / 2009 16:16 Para: Fernández Rodríguez, Dani; SAS-L@LISTSERV.UGA.EDU Asunto: RE: Text mining Schwarzenegger message

Daniel: If you are beginning with the INPUT process, try

data Schwarzenegger_text;

input text $1. @@;

cards; For some time now I have lamented the fact that major issues are overlooked while many unnecessary bills come to me for consideration. Water reform, prison reform, and health care are major issues my Administration has brought to the table, but the Legislature just kicks the can down the alley. ;

run;

How do you wish to handle blanks? S

-----Original Message----- From: SAS(r) Discussion [mailto:SAS-L@LISTSERV.UGA.EDU] On Behalf Of Fernández Rodríguez, Dani Sent: Thursday, October 29, 2009 10:12 AM To: SAS-L@LISTSERV.UGA.EDU Subject: Text mining Schwarzenegger message

I am just wondering how this message could be transposed one character by one character.

Could you help, please?

data Schwarzenegger_text;

input text $150.;

cards;

For some time now I have lamented the fact that major issues are overlooked while many

unnecessary bills come to me for consideration. Water reform, prison reform, and health

care are major issues my Administration has brought to the table, but the Legislature just

kicks the can down the alley.

;

run;

Daniel Fernandez.

Barcelona


Back to: Top of message | Previous page | Main SAS-L page