You are here:
BASE SAS, SAS Macros, SAS Automation, SAS STAT, ANALYTICS PACKAGE, DDE, X-Commands, System Functions etc.
I have been using SAS for more than 7 years.
MarketRx, Global Analytics, Morgan Stanley, HSBC
Masters in Applied Statistics and Informatics from IIT Bombay. Hons. in Statistics
| User | Date | K | C | P | Comments |
|---|---|---|---|---|---|
| Sterling | 01/17/11 | 10 | 10 | 10 | |
| Siddharth | 09/23/10 | 10 | 10 | 10 | |
| Carol | 04/26/10 | 10 | 10 | 10 | |
| siddharth | 03/04/10 | 10 | 10 | 10 | Hello , proc tabulate data=week f=dollar8.; class week ..... |
| siddharth | 03/04/10 | 10 | 10 | 10 | Thanks for that. But I'm not really ..... |
Dear Sterling, Thanks for choosing me to answer this question. The problem you are facing is due to change in some hardware changes in the system. It is nothing to do with your wireless mouse. This
Dear Siddharth, Lets say you have 3 numeric character variables var_1, var_2, var_3 in a dataset data1. You can convert them to numeric by using following data step: data data1; set data1 (rename=(var_1
Dear Carol, Please find below example using arrays of variables. data mydata; set mydata; array myvars(100) myvar1 myvar2 <add more variables here> myvar100; array newvars(100) newvar1 - nevar100
Dear Siddharth, Please see this data weekly_sales_revenues; set sales; IF "01/11/2009" <= DateofSale < "08/11/2009" THEN DO Week = "Week1"; end; Else IF "08/11/2009" <= DateofSale < "15/11/2009"
Dear Siddharth, I think you have missed some "Then" statement. Please try this and see. data week; set sales; IF DateofSale > '01/11/2009' and DateofSale <= '07/11/2009' THEN Week = Week1; Else

©2012 About.com, a part of The New York Times Company. All rights reserved.