Difference between revisions of "SAS"

From Research Computing Center Wiki
Jump to navigation Jump to search
(Replaced content with "Category:SAS ServerCategory:SoftwareCategory:Statistics === Category === Statistics === Program On === ''' == SAS IS LONGER SUPPORTED == '''")
Line 6: Line 6:
 
=== Program On ===
 
=== Program On ===
  
SAS IS LONGER SUPPORTED
+
'''
 +
== SAS IS LONGER SUPPORTED ==
  
=== Version ===
+
'''
 
9.1
 
 
=== Author / Distributor ===
 
 
See http://www.sas.com/
 
 
=== Description ===
 
 
SAS is a Statistical software package.
 
 
 
=== Running Program ===
 
 
First you need to login to stats.rcc.uga.edu. You can run SAS on the command line with:
 
<pre class="gcommand">
 
sas program.sas
 
</pre>
 
where program.sas is the name of your SAS program. In general this will generate two output files called program.log and program.lst, with the results of your program.
 
 
 
If you have an X Window client or server running on your desktop and you configure your SSH client to allow tunneling of X11 connections, you can open a graphical front-end to SAS when you issue the command
 
<pre class="gcommand">
 
sas &
 
</pre>
 
If your program takes a while to complete and you would like to logout before your job is done, you should run it with the nohup command. For example, create a script file called e.g. runsas.sh as in the sample below:
 
 
 
Script filename (runsas.sh):
 
<pre class="gscript">
 
#!/bin/csh
 
cd working_directory
 
sas program.sas
 
</pre>
 
and run this script with
 
<pre class="gcommand">
 
chmod u+x runsas.sh
 
 
 
nohup ./runsas.sh &
 
</pre>
 
Then your program will not be killed when you logout.
 
 
 
=== Documentation ===
 
 
 
 
*The graphical front-end to SAS has a Help button which provides extensive documentation. Note that you will need to configure Firefox (on stats) to allow popups. This can be done by clicking on the SAS Help button and when Firefox opens, go to Edit -> Preferences -> Content and deselect "Block Popup Windows".
 
*SAS homepage: http://www.sas.com/
 
*[http://support.sas.com/ SAS customer support center] with links to documentation and white paper.
 
*[http://support.sas.com/documentation/index.html SAS Online documentation]
 
*[http://support.sas.com/events/sasglobalforum/previous/index.html Conference Proceedings (SUGI, SAS Global Forum)]
 
*[http://support.sas.com/events/sasglobalforum/2013/index.html SAS Global Forum]
 
*[http://www.sesug.org/ SouthEast SAS Users Group (SESUG)]
 
*[http://www.sesug.org/SESUGOrganization/index.htm SESUG Conference Proceedings (select Proceedings)]
 
*Discussion Group: SAS-L (go to http://listserv.uga.edu and select SAS-L) This discussion list is archived and can be searched.
 
 
 
 
 
=== Installation ===
 
 
 
*Installed in /usr/local/SAS/
 
 
 
*The binary is located in /usr/local/bin/, a directory that is on users’ default path.
 
 
 
=== System ===
 
32-bit Linux
 

Revision as of 17:11, 13 September 2015

Category

Statistics

Program On

SAS IS LONGER SUPPORTED