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.
A doubt on SAS: data new; set _NULL_; run; data _NULL_; set new; if _N_ = 0 then call execute (\"%put empty dataset;\");
Closed. This question is seeking recommendations for books, tools, software libraries, and more. It does not meet Stack Overflow guidelines. It is not currently accepting answers.
I get the above error when submitting code as follows: 337data x; 338set nz.aa; ERROR: Cannot retrieve metadata from SAS Metadata Repository.
I would like to call some SAS instructions and get the results in my C# program (like with the LINK SQL bindings).
I have split my data into 5 folds in SAS. So I have s1,s2,s3,s4,s5 I was wondering what\'s the best way to iterate through each of the folds to perform cross validation. For example, th开发者_如何学
I want to remove columns/variables from a large SAS dataset, call it \'data\'. I have all of the column names that I want to drop stored in an开发者_Python百科other SAS dataset - let\'s call it \'var\
I am trying to import data in SAS like: ABCDE xyzhi s1s2s3s4s5 where A B C D and E are column names. I have 240 columns in my dataset and the code I am using is:
It seems that I have a rounding issue with SAS PROC FORMAT. The code is as below: proc format; value testf
My department maintains all sorts of jobs and reports based on SAS, in a mainframe/batch environment (ie ugly JCL green screens).