Amazines Free Article Archive
www.amazines.com - Thursday, May 08, 2025
Read about the most recent changes and happenings at Amazines.com
Log into your account or register as a new author. Start submitting your articles right now!
Search our database for articles.
Subscribe to receive articles emailed straight to your email account. You may choose multiple categories.
View our newest articles submitted by our authors.
View our most top rated articles rated by our visitors.
* Please note that this is NOT the ARTICLE manager
Add a new EZINE, or manage your EZINE submission.
Add fresh, free web content to your site such as newest articles, web tools, and quotes with a single piece of code!
Home What's New? Submit/Manage Articles Latest Posts Top Rated Article Search
Google
Subscriptions Manage Ezines
CATEGORIES
 Article Archive
 Advertising (133577)
 Advice (161673)
 Affiliate Programs (34799)
 Art and Culture (73858)
 Automotive (145721)
 Blogs (75621)
 Boating (9851)
 Books (17224)
 Buddhism (4130)
 Business (1331010)
 Business News (426457)
 Business Opportunities (366525)
 Camping (10974)
 Career (72796)
 Christianity (15854)
 Collecting (11638)
 Communication (115089)
 Computers (241958)
 Construction (38973)
 Consumer (49954)
 Cooking (17080)
 Copywriting (6734)
 Crafts (18203)
 Cuisine (7549)
 Current Affairs (20323)
 Dating (45910)
 EBooks (19704)
 E-Commerce (48273)
 Education (185536)
 Electronics (83525)
 Email (6438)
 Entertainment (159863)
 Environment (29004)
 Ezine (3040)
 Ezine Publishing (5454)
 Ezine Sites (1551)
 Family & Parenting (111011)
 Fashion & Cosmetics (196612)
 Female Entrepreneurs (11853)
 Feng Shui (134)
 Finance & Investment (310636)
 Fitness (106492)
 Food & Beverages (63058)
 Free Web Resources (7941)
 Gambling (30227)
 Gardening (25203)
 Government (10519)
 Health (630179)
 Hinduism (2206)
 Hobbies (44083)
 Home Business (91748)
 Home Improvement (251288)
 Home Repair (46257)
 Humor (4728)
 Import - Export (5462)
 Insurance (45104)
 Interior Design (29637)
 International Property (3488)
 Internet (191032)
 Internet Marketing (146690)
 Investment (22864)
 Islam (1161)
 Judaism (1352)
 Law (80500)
 Link Popularity (4596)
 Manufacturing (20932)
 Marketing (99328)
 MLM (14140)
 Motivation (18237)
 Music (27000)
 New to the Internet (9498)
 Non-Profit Organizations (4048)
 Online Shopping (129742)
 Organizing (7813)
 Party Ideas (11855)
 Pets (38165)
 Poetry (2229)
 Press Release (12691)
 Public Speaking (5643)
 Publishing (7566)
 Quotes (2407)
 Real Estate (126901)
 Recreation & Leisure (95496)
 Relationships (87678)
 Research (16182)
 Sales (80361)
 Science & Technology (110299)
 Search Engines (23525)
 Self Improvement (153318)
 Seniors (6224)
 Sexuality (36012)
 Small Business (49377)
 Software (83054)
 Spiritual (23537)
 Sports (116155)
 Tax (7664)
 Telecommuting (34070)
 Travel & Tourism (308297)
 UK Property Investment (3123)
 Video Games (13382)
 Web Traffic (11801)
 Website Design (56949)
 Website Promotion (36670)
 World News (1000+)
 Writing (35853)
Author Spotlight
AREESH ISHTIAQ

Areesh Ishtiaq a Top Rated SEO and Digital Marketing Guru on Upwork, working as a project manager fo...more
PANKAJ RATTAN

I am Pankaj Rattan. I am a B.tech student. I love to ride my bike and play cricket. And i also love ...more
GREG DERR

Triple Diamond Construction is a licensed roofing company serving Oklahoma City, Moore, Norman, Yuko...more
RAM SEWAK

Myself Ram Sewak possessing indepth domain experience of more than 10 years in SEO, SEM, Web Develop...more
JANE PAGE

Jane is an ardent mobile and internet marketing and enthusiast reporter on major press media in USA...more


SAS Log Window by Clinnovo Research Labs





Article Author Biography
SAS Log Window by
Article Posted: 06/17/2013
Article Views: 633
Articles Written: 26
Word Count: 838
Article Votes: 1
AddThis Social Bookmark Button

SAS Log Window


 
Education,Health,Science & Technology
SAS is statistical analysis software/system and is one of the integrated systems of software products provided by the Northern Carolina State University. SAS enables programmers to perform various tasks like Storage, Retrieval, Management and Mining of clinical data. Programmers can also perform Report writing, statistical analysis and represent the data in a graphical way that clearly demonstrates its significance.

SAS Environment has many windows to perform different tasks on the SAS Environment, editor window, log window, output window, explorer window and result window.

Log window is one of the windows which is specially designed to identify errors that are generated during programme coding part and it also keeps a record of everything that has been done within the programming part. These programming statements are identified by line numbers, interspersed with SAS statements are messaged from SAS in to log window. These messages might begin with the words NOTE, INFO, WARNING, ERROR or an error number and they might refer to a SAS statement by its line number in the log.

Instructing SAS Log:

Programmers can instruct SAS output to write additional information to the log by using the following statements:

PUT statement: Writes selected lines (including text strings and DATA step variable values) to the SAS log in the current iteration of a DATA step.

%PUT statement: Enables to write a text string or macro variable values to the SAS log. %PUT is a SAS macro program statement.

PUTLOG statement: Writes a user-specified message to the SAS log.

LIST statement: Writes to the SAS log the input data records for the data line that is being processed. The LIST statement operates only on data that are read with an INPUT statement. It has no effect on data that are read with a SET, MERGE, MODIFY or UPDATE statement.

DATA statement with nesting option: Writes to the SAS log a note for the beginning and end for each nesting level of DO-END and SELECT-END statements.

ERROR statement: Sets the automatic _ERROR_ variable message on to the log window.

Customizing SAS Log window:

Programmers can also customize their log window by using some statements. When there are large SAS production programs or an application that has to run on a regular basis without changes and might want to suppress part of the log of the programs that are generated by default. A SAS system option enables to suppress SAS statements and system messages, as well as to limit the number of error messages.

Some of the SAS system options that can be used to alter the contents of the log are as follows:

CPUID / NOCPUID: This option specifies whether hardware information is written to the SAS log.

ECHO: Specifies a message to be written to the SAS log while SAS system is initialized.

MLOGIC: This option writes macro execution trace information to the SAS log.

MLOGICNEST: This option writes macro nesting execution trace information to the SAS log.

MPRINT / NOMPRINT: specifies whether SAS statements that are generated by macro execution are written to the SAS log.

NOTES / NONOTES: specifies whether notes (messages beginning with NOTE) are written to the SAS log. NONOTES does not suppress error or warning messages.

SOURCE / NOSOURCE: specifies whether SAS writes source statements to the SAS log.

SYMBOLGEN / NOSYMBOLGEN: Specifies whether the results of resolving macro variable references are written to the SAS log.

How Errors are shown in Log window:

Errors are also known as bugs. These errors in a SAS programming languages are the ones that cause an undesirable, usually unexpected result. One way of classifying bugs/errors in SAS is to divide them into three types of errors: syntax errors, data errors and logic errors.

Syntax errors: result from failing to follow SAS rules about the way keywords are put together to make statements. Examples: missing semicolon, uninitialized variable and missing variable.

Data errors: have a program that is syntactically sound but fails because of data values that do not fit the program as it was written. Examples: missing values were generated, invalid data, character field is truncated etc.

Logic errors: have a program that runs and data that fits, but the result/reports that it has to generate is wrong because the program does something different than it is intended to do. Examples: DATA step produces wrong results but no error message.

Conclusion: SAS log window is majorly used to check the successful running of the programs and to debug and avoid the errors that occur during the SAS programming.

Clinnovo is a clinical innovation company. It is pioneer CRO industry in India. Clinnovo offers professional clinical research course , clinical data management course ,SAS Training and imaging training. Clinnovo has been serving different bio-pharma industries across the world with excellence and high quality. For more information contact at +91 9912868928, 040 64635501

Related Articles - statistical, analysis, software, system, integrated, systems, software, Storage, Retrieval, Management, Mining, clinical data, SAS, statements, data,

Email this Article to a Friend!

Receive Articles like this one direct to your email box!
Subscribe for free today!

 Rate This Article  
Completely useless, should be removed from directory.
Minimal useful information.
Decent and informative.
Great article, very informative and helpful.
A 'Must Read'.

 

Do you Agree or Disagree? Have a Comment? POST IT!

 Reader Opinions 
Submit your comments and they will be posted here.
Make this comment or to the Author only:
Name:
Email:
*Your email will NOT be posted. This is for administrative purposes only.
Comments: *Your Comments WILL be posted to the AUTHOR ONLY if you select PRIVATE and to this PUBLIC PAGE if you select PUBLIC, so write accordingly.
 
Please enter the code in the image:



 Author Login 
LOGIN
Register for Author Account

 

Advertiser Login

 

ADVERTISE HERE NOW!
   Limited Time $60 Offer!
   90  Days-1.5 Million Views  

 

Great Paranormal Romance


TIM FAY

After 60-plus years of living, I am just trying to pass down some of the information that I have lea...more
STEVERT MCKENZIE

Stevert Mckenzie, Travel Enthusiast. ...more
ADRIAN JOELE

I have been involved in nutrition and weight management for over 12 years and I like to share my kn...more
GENE MYERS

Author of four books and two screenplays; frequent magazine contributor. I have four other books "in...more
LAURA JEEVES

At LeadGenerators, we specialise in content-led Online Marketing Strategies for our clients in the t...more
MICHAEL BRESCIANI

Rev Bresciani is the author of two Christian books. One book is an important and concisely written b...more
STEPHEN BYE

Steve Bye is currently a fiction writer, who published his first novel, ‘Looking Forward Through the...more
LEVAL AINAH

I am an internet marketer and also an educator. My goal is to help others who are looking to improve...more
PAUL PHILIPS

For more articles, blog messages & videos and a free e-book download go to www.NewParadigm.ws your p...more
ALEX BELSEY

I am the editor of QUAY Magazine, a B2B publication based in the South West of the UK. I am also the...more

HomeLinksAbout UsContact UsTerms of UsePrivacy PolicyFAQResources
Copyright © 2025, All rights reserved.
Some pages may contain portions of text relating to certain topics obtained from wikipedia.org under the GNU FDL license