First
|
Prev |
Next
|
Last
Pages: 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152
Dynamic path reader, Hi, this my very first post, I hope you can help in this I want Dynamic path reader, " Name=Customer; proc import out=Customer datafile='C:\Users\hallbird\Load\A\'||Name||'.csv' dbms=csv replace; getnames=YES; DATAROW=2; run; " But still i can't make it, is there's any solution for it ... 30 Dec 2009 17:36
convert an array into a string How can I get sas to automatically convert an array of integers or doubles (like the one below): array arr(5) (4 7 12 5 98); into a string (like the one below): str="4 7 12 5 98"; ... 27 Dec 2009 18:29
SAS run via a web browser - Legal issues Vincent, Interesting concept and, if SI were to go along with it, the pricing model could end up being even more complex based upon the offerings. My first thought was, wow, what a great concept for offering Enterprise Miner. However, upon more thought, I realized that doing any analyses that way would risk o... 26 Dec 2009 19:51
Phylogeny Stephane, I don't know if this is close enough, but thought it would be worth sharing: users.ox.ac.uk/~grafen/phylo/phyman.pdf HTH, Art ------- On Sat, 26 Dec 2009 10:30:44 -0500, Stephane COLAS <scolas(a)DATAMETRIC.FR> wrote: Hi I'm wondering if someone of you could help me just to find if we can w... 27 Dec 2009 07:37
Phylogeny Hi I'm wondering if someone of you could help me just to find if we can work on phylogeny with SAS. In R, there is a function for that. But in SAS ? Have good holidays. Stéphane. ... 26 Dec 2009 11:05
SAS run via a web browser - Legal issues Interesting article about a new way to run SAS... via a web browser or an API: http://www.sasnetwork.com Check the posting "Analytics 3.0. What is it? What are the risks and opportunities?". ... 25 Dec 2009 23:21
Make Money From Home - How to Deal With Distractions Life is full of distractions, interruptions, unexpected challenges and needs. With the arrival of the cell phone, these distractions have tripled. Nowadays you are constantly reachable unless you take definite steps to control your phone and your time. Now that you are working from home, http://i-affil... 25 Dec 2009 04:00
string parsing You could use something like: data want; set have; if length(var1) eq 3 and notdigit(var1) eq 4; run; HTH, Art -------- On Thu, 24 Dec 2009 09:13:41 -0500, William Shakespeare <shakespeare_1040(a)HOTMAIL.COM> wrote: I have a column in my data that is a 9 character string: var1 12345 abc 6 ... 24 Dec 2009 15:08
A Surprise Gift for you by Project Drive!! Have you ever think that you also can be able to get A Free Project Management Software provided at http://www.project-drive.net/ Yes, Project Drive is offering Free Project Management Software and tools special on Christmas to celebrate with the http://www.project-drive.net/. .. Go http://freetrial.project-dr... 24 Dec 2009 09:39
Reading a big .CSV file into SAS Annie A csv file is text only. You don't need a DDE. The following seems correct: FILENAME IN1 "C:\data\myinfo.csv"; data mydataa; infile in1 DLM=',' missover; input ... You read all your data as character in the form <varname> $. That doesn't seem right for variable names like "Date" and "DOB". ... 24 Dec 2009 01:04 |