SAS language

From Wikipedia, the free encyclopedia
(Redirected from SAS programming language)
SAS
ParadigmMulti-paradigm: Data-driven, Procedural programming
Designed byAnthony James Barr
DeveloperSAS Institute
First appeared1976; 48 years ago (1976)
OSWindows and macOS
LicenseProprietary commercial software
Filename extensions.sas
Websitesas.com/en_us/software/base-sas.html

The SAS language is a fourth-generation computer programming language used for statistical analysis, created by Anthony James Barr at North Carolina State University.[1][2] Its primary applications include data mining and machine learning. The SAS language runs under compilers such as the SAS System that can be used on Microsoft Windows, Linux, UNIX and mainframe computers.[3]

History[edit]

SAS was developed in the 1960s by Anthony James Barr, who built its fundamental structure, [4] and SAS Institute CEO James Goodnight, who developed a number of features including analysis procedures.[5] The language is currently developed and sponsored by the SAS Institute, of which Goodnight is founder and CEO.[6]

Language[edit]

Base SAS is a fourth-generation procedural programming language designed for the statistical analysis of data.[7] It is Turing-complete and domain specific, with many of the attributes of a command language. As an interpreted language, it is generally parsed, compiled, and executed step by step.[8] The SAS system was originally a single instruction, single data (SISD) engine, but single instruction, multiple data (SIMD) and multiple instruction, multiple data (MIMD) functionality was later added.[9][10] Most base SAS code can be ported between versions, but some are functions and parameters are specific to certain operating systems and interfaces.[11]

All SAS programs are written within the SAS language, although some packages use menu-driven graphical user interfaces on the front-end.[12] Various SAS editors use color coding to identify components like step boundaries, keywords and constants.[13] It can read in data from common spreadsheets and databases and output the results of statistical analyses in tables, graphs, and as RTF, HTML and PDF documents.[14]

Syntax[edit]

The language consists of two main types of blocks: DATA blocks and PROC blocks.[15] DATA blocks can be used to read and manipulate input data, and create data sets. PROC blocks are used to perform analyses and operations on these data sets, sort data, and output results in the form of descriptive statistics, tables, results, charts and plots.[16][17] PROC SQL can be used to work with SQL syntax within SAS.[18]

Users can input both numeric and character data into base SAS. SAS statements must begin with a reserve keyword end with ;[19] but the language is otherwise flexible in terms of formatting and most statements are case insensitive.[20] SAS statements can continue across multiple lines and do not require indenting, although indents can improve readability.[19] Comments are delimited by /* and */.[21]

A standard SAS program typically entails the definition of data, the creation of a data set, and the performance of procedures such as analysis on that data set.[19] SAS scripts have the .sas extension.

A simple example of SAS code is the following

* COMMENT;
Data TEMP;
   input X Y Z;
   datalines;
1 2 3
5 6 7
;
run;

PROC PRINT DATA = TEMP;
RUN;

SAS macro language[edit]

The SAS macro language is made available within base SAS software to reduce the amount of code, and create code generators for building more versatile and flexible programs.[22] The macro language can used for functionalities as simple as symbolic substitution and as complex as dynamic programming.[8] SAS macro is considered to be a rich language,[23] although its overall syntax is very similar to that of base SAS. The names of macro variables in SAS are usually preceded by &, while macro program statements are usually preceded by %.[8]

Software[edit]

SAS Institute develops a number of tools and software suites, also called SAS, which are used for creating programs in the language. These suites include JMP, SAS Viya, SAS Enterprise Guide and SAS Enterprise Miner.[3][9][18] In 2002, World Programming also developed software that allows the execution of most SAS scripts.[18]

See also[edit]

Notes[edit]

  1. ^ SAS History, SAS Institute, archived from the original on 2013-10-23, retrieved April 4, 2014
  2. ^ Barr & Goodnight, et al. 1976:"The SAS Staff". Attribution of contributions to SAS 72 and SAS 76.
  3. ^ a b Chambers, Michele; Dinsmore, Thomas W. (2015). Advanced Analytics Methodologies: Driving Business Value with Analytics. Pearson Education. p. 203. ISBN 978-0-13-349860-8.
  4. ^ Agresti, Alan; Meng, Xiao-Li (2012-11-02). Strength in Numbers: The Rising of Academic Statistics Departments in the U. S. Springer Science & Business Media. p. 177. ISBN 978-1-4614-3649-2.
  5. ^ Wahi, Monika (2020-10-16). Mastering SAS Programming for Data Warehousing: An advanced programming guide to designing and managing Data Warehouses using SAS. Packt Publishing Ltd. pp. 8–10. ISBN 978-1-78953-118-3.
  6. ^ "Pampering The Customers, Pampering The Employees". Forbes. Retrieved 2024-04-29.
  7. ^ "SAS Help Center". documentation.sas.com. Retrieved 2024-04-29.
  8. ^ a b c Carpenter, Art (2016-08-25). Carpenter's Complete Guide to the SAS Macro Language, Third Edition. SAS Institute. pp. 1–11. ISBN 978-1-62960-237-0.
  9. ^ a b Bequet, Henry (2018-07-20). Deep Learning for Numerical Applications with SAS. SAS Institute. pp. 4–5. ISBN 978-1-63526-677-1.
  10. ^ Bequet, Henry (2018-07-20). Deep Learning for Numerical Applications with SAS. SAS Institute. pp. 4–5. ISBN 978-1-63526-677-1.
  11. ^ Hughes, Troy Martin (2016-08-24). SAS Data Analytic Development: Dimensions of Software Quality. John Wiley & Sons. pp. xiii. ISBN 978-1-119-25570-3.
  12. ^ Delwiche, Lora D.; Slaughter, Susan J. (2019-10-11). The Little SAS Book: A Primer, Sixth Edition. SAS Institute. ISBN 978-1-64295-343-5.
  13. ^ Elliott, Alan C.; Woodward, Wayne A. (2015-08-18). SAS Essentials: Mastering SAS for Data Analytics. John Wiley & Sons. p. 12. ISBN 978-1-119-04218-1.
  14. ^ Ohri, Ajay (2019-08-05). SAS for R Users: A Book for Data Scientists. John Wiley & Sons. pp. 151–157. ISBN 978-1-119-25642-7.
  15. ^ Bass, N. Jyoti; Solutions, K. Madhavi Lata & Kogent (2007). Base Sas Programming Black Book, 2007 Ed. Dreamtech Press. pp. 3–8. ISBN 978-81-7722-769-7.
  16. ^ Chambers, Michele; Dinsmore, Thomas W. (2015). Advanced Analytics Methodologies: Driving Business Value with Analytics. Pearson Education. p. 203. ISBN 978-0-13-349860-8.
  17. ^ Ohri, Ajay (2019-08-05). SAS for R Users: A Book for Data Scientists. John Wiley & Sons. pp. 51–58. ISBN 978-1-119-25642-7.
  18. ^ a b c Anderson, Raymond A. (2022). Credit Intelligence and Modelling: Many Paths Through the Forest of Credit Rating and Scoring. Oxford University Press. p. 565. ISBN 978-0-19-284419-4.
  19. ^ a b c Bass, N. Jyoti; Solutions, K. Madhavi Lata & Kogent (2007). Base Sas Programming Black Book, 2007 Ed. Dreamtech Press. pp. 43–44. ISBN 978-81-7722-769-7.
  20. ^ Delwiche, Lora D.; Slaughter, Susan J. (2019-10-11). The Little SAS Book: A Primer, Sixth Edition. SAS Institute. ISBN 978-1-64295-343-5.
  21. ^ Ohri, Ajay (2019-08-05). SAS for R Users: A Book for Data Scientists. John Wiley & Sons. pp. 4–6. ISBN 978-1-119-25642-7.
  22. ^ "Introduction to SAS Macro Language". stats.oarc.ucla.edu. Retrieved 2024-04-29.
  23. ^ Stalla, Alessio (2022-04-20). "Challenges in Parsing Legacy Languages: The Case of SAS Macros". Strumenta. Retrieved 2024-04-29.

References[edit]

  • "Overview of the SAS Language". Department of Animal Science, McGill University. Retrieved 5 October 2013.
  • Barr, A. J.; Goodnight, J. H.; Sall, J. P.; Helwig, J. T. (1976), A User's Guide to SAS 76, Raleigh, North Carolina: SAS Institute, Inc., ISBN 0-917382-01-3

External links[edit]