0
votes
2answers
124 views
Can you use a SAS dataset as a SSIS data source?
We have a some ETL processes that read CSV files that are output from SAS programs. I'm in the process of upgrading one of these ETLs and was wondering if I could use SSIS to read …
2
votes
3answers
62 views
Logging SAS scripts
I've been developing a lot of Java, PHP and Python. All of which offer great logging packages (Log4J, Log or logging respectively). This is a great help when debugging applications …
1
vote
2answers
160 views
Is there a free Statistics Package for Delphi?
Is there an open source and/or free statistics package or library for Delphi? I'm looking for something that can compile directly into the executable, so no DLL's. It needs to be c …
1
vote
2answers
82 views
SAS - Reading a File Backwards?
I need SAS to read many large log files, which are set up to have the most recent activities at the bottom. All I need is the most recent time a particular activity occurred, and I …
1
vote
3answers
65 views
Spatial analysis in SAS?
Hi all,
Is there a way to do spatial analysis (NOT just graphics) in SAS? What I really want is the ability to geographic queries like one can do in PostGIS or SpatialLite in PRO …
1
vote
2answers
83 views
SAS and Web Data
I have been taking a few graduate classes with a professor I like alot and she raves about SAS all of the time. I "grew up" learning stats using SPSS, and with their recent decisi …
1
vote
1answer
60 views
clearing a library which is being used for stored compiled SAS macro
I have a program which creates a stored compiled macro in a library using the syntax:
options mstored sasmstore=MyLib;
%macro MyMac() /store source des='My Macro';
%let x=1;
% …
0
votes
2answers
39 views
SAS Enterprise Guide UNIX WORK library - viewing files
How do I view the file below in Enterprise Guide (v 4.1 ) ??
%let libWORK=%sysfunc(pathname(WORK)); * work lib is on UNIX ;
data _null_;
file "&libWORK./MYFILE.htm";
p …
0
votes
1answer
116 views
SAS function for using ‘power’ / exponential
I may be missing something obvious, but how do you calculate 'powers' in SAS?
Eg X squared, or Y cubed?
what I need is to have variable1 ^ variable2, but cannot find the synta …
0
votes
2answers
73 views
SAS recipe for end-to-end workflow?
Hi all
(First, I am a SAS newbie, though an experienced programmer. I have googled a little for this, I promise...)
I would like to automate some data analysis processes in popu …
0
votes
0answers
31 views
SAS Enterprise Guide DROPDOWN menus
Is it possible to create customised dropdown menus in EG? ie I would like to present a user with a list of dropdowns, and the ability to click a 'submit' button that would use the …
0
votes
3answers
43 views
How to stack information from different variables?
Help!
I have 2 variables from different datasets. Each variable has a different name in each dataset. However, the variables are delivering the same type of information for a sin …
2
votes
2answers
85 views
What impacts SAS data set performance more - number of observations or number of variables?
After working with different data sets in SAS for a month or two, it seems to me that the more variables a data set has, the more time it takes to run PROCs and other operations on …
1
vote
1answer
100 views
Datetime with milliseconds in SAS: highest precision numbers out of nowhere
Can someone explain where the highest precision numbers in variables d4 to d7 came from?
The SAS program:
data foo;
format d1-d7 datetime30.6;
timestring = "23: …
1
vote
1answer
115 views
Does SAS Proc SQL ever use an index when merging
Consider the following (admittedly long) example.
The sample code creates two data sets, data one with "key" variables i,j,k and data two with key variables j,k and a "value" var …
