First
|
Prev |
Next
|
Last
Pages: 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138
Capture MAC address into SAS Hi, =20 I need to capture MAC address of a machine from SAS... I tried to search it in the list of environment variables using %sysget function, but in vain. Can someone please help me on this? =20 Thanks in advance. =20 Regards, Kiran =20 =20 ... 19 Jan 2010 09:01
rollup I have a rollup in a data step that looks like this: %let enddate='31NOV09'd; data want; set have; if substr(put(&enddate,date9.),3,3)='NOV' then do; if substr(put(trans_date,date9.),3,3)='DEC' or if substr(put(trans_date,date9.),3,3)='JAN' or if substr(put(trans_date,date9.),3,3)='FEB' ... 19 Jan 2010 00:20
result Your estimates (and standard errors) are for the log(odds), that is, estimate = log(odds) = log(p/(1-p)). So, you just need to solve for p to give you the probability: p = exp(estimate) / (1 + exp(estimate)). Hope this helps. --- On Mon, 1/18/10, Val Krem <valkrem(a)YAHOO.COM> wrote: From: Val... 18 Jan 2010 16:31
Nomograms using annotate? Good afternoon All, I don't believe there is a function in SAS to produce nomograms such as this one: http://www.prostate-cancer.org/education/riskases/img/Tisman_Nomogram4.gif Would annotate be the right way to go to get to something like the above? Does anyone have any advice, based on experience or not, a... 22 Jan 2010 16:20
SAS I/O error hi, Perhaps it is due to user permissions (you are not able to sort it). Try this and tell me if it is OK: Proc sort data=abc.customer out=TEST ; by customerid;run; Daniel Fernandez. Barcelona. 2010/1/18 Tina Shaw <xtina.shaw7(a)gmail.com>: Hi, I get weird SAS I/O error from time to time. Here... 19 Jan 2010 18:03
"unable to write to template store" Hi. An inherited process utilises some proc template templates. The output is not coming out correctly, and I'm trying to fiddle around with its settings, but more often than not (usually only a total fresh restart of the computer seems to fix it...) I get an error that says "Template .... was unable to write ... 19 Jan 2010 11:15
Which process lock a table on Win environment Hi, I would like to know if it is possible to write in SAS log, the process number which lock a SAS table. Indeed, I use the folling statement: lock work.toto; I got this line in the log : ERROR: A lock is not available for WORK.TOTO, lock held by another process. but which one. I know it is possible i... 24 Jan 2010 19:13
proc mixed: multicolinearity Hi everyone. I'm testing the possible multicollinearity among the fixed effects in proc mixed model with the option corrb in the model statement but wondering whether I should specify method=reml or method=ml? Your help is greatly appreciated. Have a good week. ... 22 Jan 2010 18:35
DO While in Macro Hello, Can I use an Do while inside an Marco - with loop condition. ? %macro Week_combine(); %do loop = 1 %to &TotWeek-1; n=0; do while(n<=&loop); data r2; set Week_n; n+1; end; run; %end; ; run; %mend Week_combine; I have data sets from Week_0 , week_1 ......wee... 15 Jan 2010 18:19
SAS and MS SharePoint? On Jan 15, 10:25 am, gj...(a)HOTMAIL.COM (George Joseph) wrote: Anyone familiar with SharePoint? Anyone use SAS/SAS data to populate tables that are set up on a sharepoint portal. I am not looking for online resources...I am looking personal experience/tips/insights with this sort of set up. I have done it... 15 Jan 2010 16:04 |