Tagged Questions
The SAS language is a 4GL that underpins the SAS system, a suite of products centered around data processing and statistical procedures.
16
votes
3answers
640 views
Is it worth forcing myself to learn vim/emacs? [closed]
I do a lot of statistical programming in R, SAS, and Matlab (~2-3 hours a day), and alternate between Ubuntu, OS X (I have to use X11 to get SAS working for this--man, is that slow), and Windows, ...
12
votes
2answers
776 views
Experience with using h5py to do analytical work on big data in Python?
I do a lot of statistical work and use Python as my main language. Some of the data sets I work with though can take 20GB of memory, which makes operating on them using in-memory functions in numpy, ...
10
votes
4answers
207 views
Finding strings that differ with at most one letter from a given string in SAS with PROC SQL
First some context. I am using proc sql in SAS, and need to fetch all the entries in a data set (with a couple of million entries) that have variable "Name" equal to (let's say) "Massachusetts". Of ...
8
votes
2answers
228 views
R glm standard error estimate differences to SAS PROC GENMOD
I am converting a SAS PROC GENMOD example into R, using glm in R. The SAS code was:
proc genmod data=data0 namelen=30;
model boxcoxy=boxcoxxy ~ AGEGRP4 + AGEGRP5 + AGEGRP6 + AGEGRP7 + AGEGRP8 + RACE1 ...
8
votes
3answers
485 views
Opening SAS datasets for viewing from within a .sas program
Is there a way to open a SAS dataset for viewing (i.e., in the "ViewTable" window) from within a .sas file?
7
votes
4answers
5k views
Dropping a table in SAS
What is the most efficient way to drop a table in SAS?
I have a program that loops and drops a large number of tables, and would like to know if there is a performance difference between PROC SQL; ...
6
votes
5answers
219 views
sort and output records with SAS and R
I have the following data set
PatientName BVAID Rank TreatmentCode TreatmentID DoseID
Tim Stuart BVA-027 3 OP_TBC 1 1
Tim Stuart BVA-041 4 OP_TBC 1 ...
6
votes
3answers
254 views
SAS memory usage and sorting
I'm curious about SAS's use of memory, sorting, and why it seems to be so inefficient.
I have a quad core xeon with 8GB ram. I have a 3GB dataset. Why, at any given time during a standard proc ...
6
votes
2answers
504 views
how to concatenate each record within one observation in SAS
I wonder whether it's possible to concatenate each record within one observation with SAS code.
E.g.
Here is the original data set
1st_name 2nd_name 3rd_name .....last_name
abc def ghi ...
6
votes
2answers
240 views
Implementations of “The grammar of graphics” in statistical packages
I am aware that Leland Wikinson's ideas, as exposed in his book "The Grammar of
Graphics" underlie ggplot2 implementation in R.
But are there other implementations of the same ideas in other ...
6
votes
4answers
1k views
Is there a way to detect when you've reached the last observation in a SAS DATA step?
Is there a way to check how many observations are in a SAS data set at runtime OR to detect when you've reached the last observation in a DATA step?
I can't seem to find anything on the web for this ...
5
votes
4answers
493 views
How to remove duplicated records\observations WITHOUT sorting in SAS?
I wonder if there is a way to unduplicate records WITHOUT sorting?Sometimes, I want to keep original order and just want to remove duplicated records.
Is it possible?
BTW, below are what I know ...
5
votes
1answer
274 views
SAS reading bit data type in sql server 2005
I have a sql server 2005 database that has a table with a column of data type bit. When I look at the data in sql server management studio I see the column value as 0 or 1, when i pull with SAS I see ...
5
votes
3answers
316 views
Convert numeric into an alphanumeric value based on radix 36
It is easy to transform a number into a alphanumeric value based on radix 16 in SAS by using the $HEX format. Now i'm looking for an easy way to do this with radix 36 (10 numerals & 26 letters).
...
5
votes
5answers
591 views
How can I make a character variable equal to the formatted value of a numeric variable for arbitrary SAS formats?
If I have a numeric variable with a format, is there a way to get the formatted value as a character variable?
e.g. I would like to write something like the following to print 10/06/2009 to the ...
5
votes
6answers
1k views
Is it possible to do a case-insensitive DISTINCT with SAS (PROC SQL)?
Is there a way to get the case-insensitive distinct rows from this SAS SQL query? ...
SELECT DISTINCT country FROM companies;
The ideal solution would consist of a single query.
Results now look ...
5
votes
3answers
471 views
In SAS, what are good techniques/options for catching syntax errors?
In the enhanced editor, the coloring might give you a hint. However, on the mainframe I don't believe there is anything, in the editor, that will help you.
I use
OPTIONS OBS=0 noreplace;
The ...
5
votes
4answers
901 views
What is the best non-SAS IDE for the SAS Language?
I am working on SAS code that will run under UNIX. Ideally the IDE will have:
intelligent code formatting (autocomplete is not necessary).
ability to transfer code to server via SFTP/SSH/SCP.
...
5
votes
1answer
353 views
submit SAS code or macro from Toolbar
Is it possible to allocate a SAS script or macro to a Toolbar button in Base SAS? ie can you 'dm' a macro or sas script?
4
votes
1answer
145 views
Converting mixed model formula from SAS to R
I want to fit a mixed model using nlme package in R which is equivalent to following SAS codes:
proc mixed data = one;
class var1 var2 year loc rep;
model yld = var1 * var2;
random loc year(loc) ...
4
votes
1answer
131 views
Do I need to call rollback if I never commit?
I am connecting to a SQL Server using no autocommit. If everything is successful, I call commit. Otherwise, I just exit. Do I need to explicitly call rollback, or will it be rolled back automatically ...
4
votes
1answer
139 views
if _N_ = 1 condition returns true even if the set dataset is empty (zero observations) in SAS
A doubt on SAS:
data new;
set _NULL_;
run;
data _NULL_;
set new;
if _N_ = 0 then call execute ("%put empty dataset;");
if _N_ = 1 then call execute ("%put ...
4
votes
3answers
128 views
Macro returning a value
I created the following macro. Proc power returns table pw_cout containing column 'Power'. The "data null" step assigns the value in column power of pw_out to macro variable tpw. I want the macro ...
4
votes
3answers
232 views
Transform literal date parameter to SAS date value in macro
I want to create a SAS macro which takes a literal date (eg. '31may2011'd) as parameter. Inside the macro I want to transform this into a SAS date value (eg. 18778).
%macro ...
4
votes
1answer
124 views
Tell SAS not to add newly generated tables on the Process Flow
I have a SAS code that creates a lot of intermediary tables for my calculations. Thing is, I don't really care about this tables after the job is done, I only care to the finals results.
But, ...
4
votes
3answers
354 views
How to detect how many observations in a dataset (or if it is empty), in SAS?
I wonder if there is a way of detecting whether a data set is empty, i.e. it has no observations.
Or in another saying, how to get the number of observations in a specific data set.
So that I can ...
4
votes
1answer
296 views
SAS Macro-variable reference concatenation
The following code reads in a cellphone bill from an excel file and do a lot of cleaning / reports.
%LET month = March;
..........
PROC IMPORT OUT = PHONE.marchmin
DATAFILE = ...
4
votes
3answers
385 views
Can anyone help me write a R data frame as a SAS data set?
In R, I have used the write.foreign() function from the foreign library in order to write a data frame as a SAS data set.
write.foreign(df = test.df, datafile = 'test.sas7bdat', codefile = ...
4
votes
2answers
423 views
SAS Proc Printto clears the log
I'm using Proc Printto to save the log & output to a directory, which it does quite nicely, however the log is no longer printed in the log window. I still prefer to use the log for debugging.
...
4
votes
1answer
669 views
SAS: How do I use ODS layout to put 8 graphs on 2 PDF pages?
I am using SAS ODS to create PDF documents. The code below works to put 4 graphs on 1 page. But if I try to put 8 graphs on 2 pages, all I get is 4 graphs on 1 page. I tried copying the part between ...
4
votes
1answer
136 views
How to develop a third-party SAS PROC?
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've looked everywhere for info on how to do this, and the lack of ...
4
votes
2answers
142 views
multiple missing types from SAS to SQL server
I have a SAS dataset that I am converting to sql server 2005. In the sas dataset there are numeric variables that allow for multiple missing values.
For example column AGE is specified as
0-124 = ...
4
votes
3answers
483 views
How compatible is WPS with SAS?
How compatible is the WPS SAS-clone with the corresponding products from SAS Institute?
Has anyone tried it - if so: have you run into any compatibility issues?
4
votes
1answer
131 views
polynomial terms in proc logistic and other regressions
I'd like to do the following regression
proc logistic data=abc
model y = x x*x x*x*x ....;
run;
Is there a shorthand to generate these polynomial terms? Thanks.
4
votes
5answers
2k views
sas informat datetime
Can anyone advise on the appropriate SAS informat to read in a datetime (dd/mm/yyyy hh:mm) ???
eg
data _null_;
informat from_dt datetime????.;
input from_dt ;
put from_dt=;
cards;
01/01/1960 00:00
...
4
votes
1answer
372 views
SAS DM 'close table'
to open a table in SAS we can use the DM "VT {tablename}" command.
What is the equivalent command to CLOSE the viewtable window???
4
votes
7answers
2k views
SAS Display Manager commands
The SAS display manager is a comamnd line interface to the SAS system, which remains in Base SAS as a legacy facility.
However the online documentation on how to use this facility is sparse at best, ...
4
votes
3answers
11k views
sas date - convert today() into yyyymmdd format
How do I convert a SAS date such as "30JUL2009"d into YYYYMMDD format (eg 20090730) ??
so for instance:
data _null_;
format test ?????;
test=today();
put test=;
run;
would give me "test=20090730" ...
4
votes
2answers
1k views
How do I get SAS encoding option programmatically?
How do I find out the SAS global encoding option programmatically? I can run proc options, and it will give me the answer, but I need to do it from code.
I am hoping for an answer on the lines of ...
4
votes
3answers
502 views
Error handling on sockets in SAS under OpenVMS
I'm using SAS 9.2 on OpenVMS to connect to an external data source over a socket specifed with a filename statement:
filename extsrc SOCKET "extserver:port" recfm=v;
data foo;
infile extsrc;
input;
...
4
votes
3answers
4k views
SAS: Calling one macro from another…Order of Macro Definitions
In my code I have several macros. Macro A is the main macro. Macro A then calls macro B which in turn calls macro C.
In SAS, do I have to define them in backwards order? In other words, do I ...
3
votes
1answer
42 views
Is there a way to make SAS stop upon the first warning or error?
SAS likes to continue processing well after warnings and errors, so I often need to scroll back through pages in the log to find an issue. Is there a better way? I'd like it to stop as soon as the ...
3
votes
2answers
63 views
join in bash like in SAS
I'd like to join two files in bash using a common column. I want to retain both all pairable and unpairable lines from both files. Unfortunately using join I could save unpairable fields from only one ...
3
votes
4answers
119 views
Capture stdout and stderr from SAS in Windows?
I want to call a SAS program from another program on Windows. I have some experience invoking SAS from the command line in batch mode, but no real experience receiving messages from it and handling ...
3
votes
1answer
63 views
“Save As” and “Close file” without using macro
I usually have a sas macro code which automatically run macros "Save As" and "Close file" in the excel spreadsheet on running the sas code and after populating the data into the excel file.
The ...
3
votes
5answers
227 views
How does SAS macro quoting interact with format literals?
Executing locally in a clean session:
%let x = %str(put(age, best.));
proc sql;
select &x from sashelp.class;
quit;
This generates the following error:
1 put(age, best.)
...
3
votes
3answers
163 views
How can I perform a piece of macro for each observation in sas data step?
Suppose I allow user to write his own variable calculation macro using a common user interface:
%macro calculate(var_name, var_value);
%* Some user-defined calculation;
%mend calculate;
Then in a ...
3
votes
1answer
97 views
Change current folder
I'd like to specify the current folder. I can find the current folder:
libname _dummy_ ".";
%let folder = %NRBQUOTE(%SYSFUNC(PATHNAME(_DUMMY_)));
%put &folder;
and change it manually by double ...
3
votes
2answers
442 views
How to detect all empty columns in a dataset and delete\drop them?
As suggested in the title, I'd like to drop all empty columns\variables(where all records are empty or equal null or ""), so as to reduce time cost in later execution.
Detailed scenario:
I have a ...
3
votes
2answers
421 views
SAS macro variable change + array index
This is related to this question: SAS macro variable change.
The code below explains the problem:
%macro test (arg=);
options mlogic mprint symbolgen;
array arraytwo [%EVAL(&arg+1)] ...