First  |  Prev |  Next  |  Last
Pages: 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89
Plot time series over an interval
I'm trying to gplot a time series on an interval from 5:30 to 5:31 to see number of people I have within that interval. Data Entry_Times; Input ticket_time $1-10; cards; 5:27:14 5:30:34 5:30:34 5:31:29 5:31:35 5:31:50 5:31:57 5:31:58 5:31:59 5:32:05 5:32:22 5:32:59 5:33:58 5:34:14 5:35:39 ; run... 15 Mar 2010 00:16
ranuni between .20 and .25
I'm trying to randomize values between .20 and .25. I'm not sure how to manipulate that with: ranuni(123) thanks, ... 17 Mar 2010 09:05
SAS 9.2 on windows 7
Dear all, Hi, windows 7 has been officially released now and I was hoping if more people who had a chance to run SAS 9.2 on windows 7 could share their experience? Earlier I heard that SAS 9.2 does not supported windows 7 yet and I was wondering if there are any recent updates/service packs that one can downl... 26 Mar 2010 14:19
Credit Scoring using SAS EM
Hello All, Could anyone please tell me how do i begin practicing the credit scoring using SAS Enetrprise Miner . I have basic knowledege of the SAS , and can perform regression tests in it. Are there any online practice materials where i can have some data and steps explained how to apply credit scoring models. ... 13 Mar 2010 17:34
Logit-poisson; Interpreation of random effect and model diagnostics
Hello All, Apologize in advance for the long mail, but I guess more information, the better the response. I am analyzing count data which has a 40 % (?high) proportion of zeroes and remaining data ranges from 1-100 number of events in the observation period. The response variable is the number of events a patient... 15 Mar 2010 04:36
How to condense multiple observations
Hi, Suppose I have a file like this: Brand ReporterID SALE1998Q3 SALE1998Q4 SALE1999Q1 SALE1999Q2 Ford 2 200 300 400 Ford 1 200 500 Ford 3 ... 22 Mar 2010 16:48
how to use variable value as variable in the same dataset
proc format; value parm 74='var1' 75='var2' 76='var3'; data test; var1=1; var2=2; var3=3; x=74; y=put(x,parm.); z=Y; run; i want z=1 that means y is var1 but how can i assign the value of y as a variable in the same dataset to another variable Thanks in advance ... 13 Mar 2010 17:34
adding +6 to age
Hi all, I have a repeated measures dataset sorted by ID. I have age at baseline, visit zero, and would like to add +6 to each visit after. Here is my code: data ageid; set one; BY ID; retain ageid; If first.ID then ageid=age; else ageid=age+6; end; run; My data now looks like this: ID Age 10 ... 12 Mar 2010 19:32
SAS => Excel DDE format numbers
Hi, I'm trying to format the numbers in a database i'm trying to export to excel using DDE since I have to do it 7,000 times and I've been successful in formating some numbers but not those that need an "accounting' format. Below is my successful code for the number format with a comma separator and 2 decimal p... 13 Mar 2010 18:40
ERROR message in the log - hard to understand
Hi, I do have some trouble finding an error in my code. I don't fully understand what SAS is trying to tell me. Here is the code: data saslog_ekstrakt_sekvensiell; length Type $12.; length Spraak_Komponent $15.; Type = " "; Spraak_Komponent = " "; ... 12 Mar 2010 18:25
First  |  Prev |  Next  |  Last
Pages: 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89