I am trying to import numbers from csv file to sas dataset with proc import ( SAS ) , but all my leading ze开发者_运维百科ro are disappear after the import.
my data set has two variables ID and diagnosis. I am trying to assign row numbers in my dataset based on ID and diagnosis.
Executing locally in a clean sess开发者_如何学Goion: %let x = %str(put(age, best.)); proc sql; select &x from sashelp.class;
I am trying to list content of sas library Sasuser with standard sas 9 setup. From explorer, the library contains Table and catalogs. I am wondering what went wrong. Plus I am able to run proc content
does any one know how to get weeknumber within sas proc 开发者_如何学Gosql ?Personally, I find it very hard to go past SAS\'s own, native WEEK function. It can be called from inside proc sql. Pass it
Is it possible, as a third party, to develop a SAS PROC?I\'m thinking of something like a matlab toolbox or an R package.
I\'m wondering if there\'s a way to force all non-intercept coefficients to be positive/negative in proc reg. If I use:
So, according to SAS books, you do: PROC IMPORT DATAFILE=\"filename\" | TABLE=\"tablename\" OUT=SAS-data-set
Does any one know proc sql or data step have a function where I can convert datetime value into : 15 mins interva开发者_开发知识库l for example :
I am rather new to SAS and I have run into a problem that I think probably has a better solution than what I\'ve found so far.