SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH

Size: px
Start display at page:

Download "SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH"

Transcription

1 SAS PROGRAMMING ESSENTIALS FOR STATISTICAL COMPUTING IN DAIRY RESEARCH A.K. Sharma NDRI, Karnal Introduction Statistical Computing is the interface between Statistics and Computer Science. It is the area of computational science (or scientific computing) specific to the mathematical science of Statistics. The rapid and sustained increase in computing power starting from the second half of the 20 th century has made a substantial impact on the practice of Statistical Science. Early statistical models were almost always from the class of linear models, but powerful computers, coupled with suitable numerical algorithms, caused an increased interest in nonlinear models (such as connectionist models) as well as the creation of new types, such as generalised linear models and multivariate and multilevel models. Increased computing power has also led to the growing popularity of computationally intensive methods. The computer revolution has implications for the future of Statistics with new emphasis on Experimental and Empirical Statistics. A large number of both general and special purpose statistical software are now available. SAS (pronounced sass, originally Statistical Analysis System) is such an integrated system of software products provided by SAS Institute Inc., Cary, North Carolina, USA that enables Scientists to perform various tasks, viz., Data Entry, Retrieval, Management and Mining Report Writing and Graphics Statistical Analysis Forecasting and Decision Support Operations Research and Project Management Quality Improvement Data Warehousing Platform Independent and Remote Computing Grid and Cloud Computing, etc. SAS was conceived by Anthony J. Barr in As a North Carolina State University graduate student during , Barr had created an Analysis of Variance Modelling Language inspired by the notation of statistician Sir Maurice G. Kendall, followed by a Multiple Regression Programme that generated machine code for performing algebraic transformations of the raw data. Drawing on those programmes and his experience with structured data files, he created SAS, placing statistical procedures into a formatted file framework. From 1966 to 1968, Barr developed the fundamental structure and language of SAS. By 1971, SAS was gaining popularity within the academic community. Strength of the system was analysing experiments with missing data, which was useful especially to the agricultural and pharmaceutical industries among others. In 1973, extensive programming in econometrics, time series, and matrix algebra were made. In 1976, SAS Institute, Inc. was incorporated by Barr, et al.

2 Base SAS An Overview Base SAS is the core foundation for variety of data management and analytic software components under SAS. It provides essential tools for the basic data-driven tasks that are performed by the scientists, i.e., data access, management, analysis and presentation (Fig.1). Data Access and Management Application Development base SAS Reporting and Graphics Analytics Fig.1: Base SAS. The SAS programming language, ready-to-use procedures and the windowing interface can be used to access research data from many sources, manage, analyse and present the research data as meaningful information in the form of a report that can be delivered to any platform, in any format as per need. The reports thus generated can be published on the Web for its wider dissemination among various stakeholders. Accessing data As stated earlier, you can access data using SAS regardless of the data sources or platforms on which it resides, i.e., you can access data that are stored (almost) anywhere, whether these are in a file on your system, or data that is stored on a remote server or in another database system in almost any format, including raw data, SAS data sets, and files created by other vendors software. You can access various types of file with SAS that include, reading raw data in any format from any kind of file including variable-length records, binary files, free-formatted data, even files with missing data; accessing some other vendors files directly, including BMDP, SPSS, and OSIRIS files. For others, you can use SAS/ACCESS tool to access external data as if it were native to SAS, e.g., reading data stored in a Microsoft Excel spreadsheet, in a Microsoft Access table, in a dbase file, or in ORACLE or another DBMS. Managing data After having accessed the data, the same can be manipulated using the SAS programming language, e.g., format the data, create variables (columns), use operators to evaluate data values,

3 use functions to create and recode data values, subset data, perform conditional processing, merge a wide range of data sources, create, retrieve, and update database information. Analysing data and presenting information Once the data is in shape, you can use SAS to analyse the data and produce reports. The resultant SAS output can range from a simple listing of a data set to customised reports of complex relationships. Base SAS provides powerful data analysis tools to produce tables, frequency counts, and cross-tabulation tables; create a variety of charts and plots; compute a variety of descriptive statistics, including the mean, sum, variance, standard deviation and more; compute correlations and other measures of association, as well as multi-way cross-tabulations and inferential statistics, etc. For reporting and displaying analytical results, SAS provides several visually appealing output formats, such as an array of mark-up languages including HTML4 and XML; output that is formatted for a high-resolution printer, PostScript, PDF, and PCL files; RTF; interactive coloured graphs using ActiveX controls or Java applets. Finally, these reports can be delivered to a wide variety of locations and platforms in order to suit your needs. SAS Workspace SAS is designed to be easy to use. It provides windows for accomplishing all the basic SAS tasks you need to do. Once you get familiar with the starting points for your SAS tasks, you are ready to accomplish any task that SAS can do. SAS workspace is organised in the following five main windows: The Explorer Window In the Explorer Window, you can view and manage your SAS files and create shortcuts to files that are not formatted by SAS. You can use this window to: View and manage SAS files and create shortcuts to files that are not formatted by SAS Create new SAS libraries and SAS files Open any SAS file Perform most file management tasks such as moving, copying, and deleting files. Program Editor or Editor Window You can use either of these windows to enter, edit, and submit SAS programs. The Editor Window provides several useful editing features such as Colour Coding and Syntax Checking of SAS language; Expandable and Collapsible sections; Multilevel Undo and Redo, etc. The initial Editor Window title is Editor - Untitled. When you open a file or save the contents of the Editor Window to a file, the window title changes to reflect that file name. When the contents of the Editor Window are modified, an asterisk is added to the title. You can have multiple Editor Windows open at the same time. Log Window The Log Window displays messages about your SAS session and any SAS programs that you submit.

4 Output Window The Output Window displays the output from SAS programs that you submit. It automatically opens as soon as an output is created. In the MS-Windows operating environment, the Output Window is positioned behind the Log and Editor Windows until there is output to display. You can navigate between windows using the taskbar. Several SAS programs may not create any output in the Output Window. Some programs open interactive windows while other programs only produce messages in the Log Window. If you create HTML output, you can view it in the Results Viewer Window, which is the internal browser for SAS. Results Window The Results Window helps us to navigate and manage output from SAS programs that you submit. You can view, save and print individual items of the output. Recall that the Results Viewer Window is the place where you actually view HTML output. The Results Window is empty until you submit a SAS program that creates output. Then it opens automatically. The Results Window is positioned in front of the Explorer Window when SAS creates output. You can move between the two windows by using the tabs at the bottom of the windows. SAS data sets Before you start working with the data in SAS, these data must be in a special form called a SAS data set. Understanding SAS data sets is the first and foremost step towards learning about SAS programming. Conceptually, a SAS data set (also called a table) is a file containing descriptor information and related data values. The file is organised as a table of observations (rows), also called cases and variables (columns) that SAS can process. Some SAS data sets also contain an index, which enables SAS to locate records in the data set. In some special cases, such as using SAS/ACCESS to read database management system files directly, the SAS data set may contain only the logic for accessing the data, not the data itself! However, for this presentation, you assume that SAS data sets contain data. To work with SAS data sets, it is also important to understand as to how are they stored? Note that all SAS files are stored in a SAS library, which is a collection of files such as SAS data sets and catalogues. In the MS-Windows operating environment, a SAS library is typically a group of SAS files in the same folder. To access a library, assign it a name (also known as a libref, or library reference). The library names are nicknames or shortcuts that you can use to identify libraries during a SAS session. In this presentation, you will learn about assigning SAS libraries, and then to work with SAS data sets in a library. SAS assigns three libraries, viz., Sashelp, Sasuser and Work, automatically each time you start SAS. In this presentation, you learn about these libraries and view file types in the Sashelp library. In the Explorer Window, double-click Libraries. Notice that there are three libraries. Sashelp is a permanent library that contains sample data and other files, which control how SAS works at your site; this is a read-only library. Sasuser is also a permanent library that contains SAS files in the Profile Catalogue that store your personal settings; this is also a convenient place to store your own files. Work is a temporary library for files that do not need to be saved from session to session. Note that Sashelp, Sasuser and the user-assigned libraries are permanent libraries. Files in permanent libraries are saved in the operating environment. Work is a temporary library; i.e., files in the Work library are not saved once you end the SAS session. Double-click the Sashelp library. Scroll the Explorer Window and notice that there are several types of files, or members, in the library.

5 Assign a library When you define a library, you indicate the location of your SAS files to SAS. Once you define a library, you can manage SAS files within it. In this presentation, you use the New Library Window to assign a library. On the toolbar, click the New Library tool; the New Library Window opens. In the Name box, type Aksas (or any name you like). Library names are limited to 8 characters, which must start with a letter or underscore. The library names can contain only letters, numerals, or underscores. Select the Enable at Startup check box; this library will be automatically assigned each time you start a SAS session. Click Browse; select the default location or select another location in your operating environment. Any files that you save to the Aksas library will be saved in the folder that you designate in the Path box; click OK. You can delete SAS libraries. Note that when you delete a SAS library, SAS no longer has access to the directory. However, the contents of the library still exist in your operating environment. Import different format data files as SAS data sets and rename the data set files Example 1 Consider the following MS-Excel worksheet (lact.xlsx) containing data pertaining to milk production (state wise, up to first four lactations) for different breeds of dairy cattle. The same worksheet file can be saved as ASCII text file (say, lact.txt) by selecting appropriate file type at the time of saving the worksheet. STATE LACT BREED MY Haryana 1 Hariana 18 Haryana 2 Hariana 19 Haryana 3 Hariana 21 Haryana 4 Hariana 20 Haryana 1 Tharparkar 23 Haryana 2 Tharparkar 25 Haryana 3 Tharparkar 22 Haryana 4 Tharparkar 21 Haryana 1 Sahiwal 22 Haryana 2 Sahiwal 24 Haryana 3 Sahiwal 23 Haryana 4 Sahiwal 23 Haryana 1 Red Sindhi 27 Haryana 2 Red Sindhi 26 Haryana 3 Red Sindhi 25 STATE LACT BREED MY Panjab 1 Hariana 25 Panjab 2 Hariana 36 Panjab 3 Hariana 35 Panjab 4 Hariana 37 Panjab 1 Tharparkar 30 Panjab 2 Tharparkar 32 Panjab 3 Tharparkar 29 Panjab 4 Tharparkar 30 Panjab 1 Sahiwal 26 Panjab 2 Sahiwal 29 Panjab 3 Sahiwal 30 Panjab 4 Sahiwal 38 Panjab 1 Red Sindhi 29 Panjab 2 Red Sindhi 25 Panjab 3 Red Sindhi 27 Panjab 4 Red Sindhi 28 Haryana 4 Red Sindhi 25 Let us see how to add and rename a SAS data set. Now that you have a library, you can add a SAS data set to the library. With the Explorer Window active, select View Show Tree; the libraries are displayed in the left pane of the window. Click the Aksas library. Import lact.xlsx (or lact.txt) file to SAS using File Import Data... option. Click Aksas; notice that lact file has been imported there. Right-click lact and select Rename. Type lactation for the new name and click OK. SAS data set names must be 1 to 32 characters in length; begin with a letter (A-Z,

6 including mixed case characters) or an underscore ( _ ); and continue with any combination of numbers, letters, or underscores. Open a SAS data set Now that you ve created a data set, view the data that it contains. There are many other ways to get your data into a SAS data set. In general, you can enter data directly into a SAS data set using the VIEWTABLE Window; read raw data into a SAS data set using the Import wizard or SAS programming statements; read and modify existing data; convert other vendors data files into SAS data sets using SAS/ACCESS; read other vendor s data directly using SAS/ACCESS. In the Explorer Window, double-click the lactation table in the Aksas library; the table opens in the VIEWTABLE Window; scroll the VIEWTABLE Window and notice that there are 32 rows (also called observations or cases, both terms are used here synonymously) and 4 columns (also called variables) sets using SAS programming statements. View general data properties The descriptor portion of a SAS data set contains information about the data set, including the name of the data set; the date and time the data set was created; the number of observations; the number of variables; you can see this information by viewing the general properties of a data set. In the Explorer Window, right-click the Lactation table and select Properties. In the General tab, view the data set s properties. (Don t close this window yet as you ll need it for the next step too). View column attributes Besides general information about the data set, the descriptor portion also contains attribute information for each variable in the data set including the variable s name, type, length, format, informat (input format), and label. In the Aksas.lactation Properties Window, click the Columns tab. In the Column Name column, notice that all the variables for the data set are listed along with a symbol that indicates the variable s type. Variables and Labels Variable (column) names must be 1 to 32 characters in length; begin with a letter (A-Z, including mixed case characters) or an underscore ( _ ); continue with any combination of numbers, letters, or underscores. SAS is case insensitive for variable names; however, SAS remembers the first occurrence of the variable and writes it that way in output. Now, look at the Label column, a label is descriptive text up to 256 characters; labels are used instead of variable names in some reports and for the column headings in the VIEWTABLE Window. Types of Variables Further, look at the Type column. There are only two types of variables in SAS, viz., character and numeric. Character variables are listed as Text in the type column, and numeric variables are listed as Number in the Type column. The Length attribute is related to the variable s type. Character variables can contain any values; use a blank to represent missing values; can be up to 32k long. Numeric variables can contain only numeric values (the digits 0 through 9, +, -,., and E for scientific notation); use a single period (.) to represent missing values; have a default length of 8; numeric values (no matter how many digits they contain) are stored as floating point numbers in 8 bytes of storage, unless you specify another length.

7 Change a variable s format Formats are variable attributes that affect the way data values are written. SAS offers a variety of formats for numeric and character data. In this session you change the format of a variable. In the Aksas.lactation Properties Window, look at the Format column; the MY variable uses the SAS default format, which displays the value as 18 in a report. In general, SAS formats have a name; a w value, which specifies the width that is used for displaying the value, a period following the w value, numeric SAS formats, such as the Fw.d format, can also specify a d value, which is the number of decimal places to be displayed. Open the lactation table if it is not already open; right-click the MY column heading and select Column Attributes from the shortcut menu (Fig.2); in the Column Attributes Window, click the selector next to the Format box. Fig.2: Viewing Column Attributes of Aksas.lactation data set. In the Format Window, view the available formats and their descriptions. When you select a format in this list, an example is displayed in the Format Details area. Let s say that you want to incorporate the decimal places for the values of the MY variable. Change the value in the Decimal box to 12.2; click OK. In the Column Attributes Window, click Apply; then click Close. View the lactation table and notice that the values in the MY column now contain decimal places up to two decimal points.

8 Fig.3: Change a variable s format. 1. SAS programming essentials The SAS programming language is both powerful and flexible. You can program any number of analyses and reports with it. The SAS language contains statements, expressions, functions and CALL routines, options, formats, and informats, i.e., elements that many programming languages share. SAS can also simplify programming for you with its library of built-in programs known as SAS procedures. Create and run SAS programs SAS procedures use data values from SAS data sets to produce pre-programmed reports, requiring minimal effort from users. Base SAS procedures enable you to manipulate data; store and retrieve information; perform statistical analysis; create reports. This session shows you the main characteristics of SAS programs, i.e., components of SAS programs. Let s begin by looking at a simple SAS program. The sample SAS program below (Fig.4) contains two steps, a DATA step and a PROC step. These two types of steps, alone or combined, form all SAS programs: Fig.4: A sample SAS program showing the DATA and PROC steps.

9 Components of a SAS program DATA step typically creates or modifies SAS data set. Also, it is used to produce customised reports. For example, you can use DATA step to: put your data into a SAS data set compute the values for new variables check for and correct errors in your data produce new SAS data sets by subsetting, merging, and updating existing data sets, etc. Note that, in the sample program (Fig.4), the DATA step creates a new SAS data set, lact_pp.sas7bdat in the Aksas library using the existing SAS data set lactation.sas7bdat in the same library. Note that we do not directly use the original data set (lactation, in this case) rather a new data file (lact_pp, in this case) is created from the original data set, which is actually utilised by SAS for analysis of the underlying data. PROC (procedure) steps typically analyse and process data presented in the form of a SAS data set; and they sometimes create SAS data sets that contain the results of the procedure. PROC steps control a library of pre-written routines (procedures) that perform tasks on SAS data sets, such as listing, sorting, and summarising data, e.g., you can use PROC steps to print a report; produce descriptive statistics; create a tabular report; produce plots and charts, etc. The sample program (Fig.4) uses the PROC PRINT procedure, which prints the data in a data set. The DATA= option tells SAS what data to use for the procedure. Characteristics of SAS Programs Let s have a glance at the individual statements in the sample program (Fig.4). SAS programs comprise of several SAS statements. A SAS statement has two important characteristics, i.e., it usually begins with a SAS keyword; and it always ends with a semicolon. A DATA step begins with the keyword DATA, and a PROC step begins with the keyword PROC. Generally, a step ends with a RUN statement or when a new DATA or PROC step begins. A RUN statement tells SAS to process all the preceding lines of the step. SAS statements are free-format, i.e., they can begin and end anywhere on a line; one statement can continue over several lines; and several statements can be on a single line. SAS statements are not case sensitive. Blanks or special characters separate the words in a SAS statement. Composing a SAS program into the Editor Window Let s compose the sample SAS programs [i.e., Code 1(a) and Code 1(b)] given below. These programs create a new SAS data set from an existing SAS data set and then print a listing of the new data set. The Aksas.lactation data set was created in Aksas with SAS data sets. If you didn t create it, return to the task to define the library and create the data set before proceeding here. Type the following codes (one-by-one) separately, into the Editor Window and save:

10 Code 1(a): One-level name. LIBNAME aksas d:\aksas ; DATA lact_1a; SET aksas.lactation; PROC PRINT DATA=lact_1a; Code 1(b): Two-level name. LIBNAME aksas d:\aksas ; DATA aksas.lact_1b; SET aksas.lactation; PROC PRINT DATA=aksas.lact_1b; Notice that when you write this text into the Editor Window, SAS keywords are colour-coded and the program steps are separated into expandable blocks. The DATA step in Code 1(a) creates a new SAS data set named lact_1a. Note that lact_1a is a one-level name. Since no library name is specified for the lact_1a data set, SAS uses by default the Work library to temporarily store this file. The lact_1a data set is created from the lactation data set that you stored in your Aksas library. Notice that Aksas.lactation and Aksas.lact_1b are two-level names [as shown in the Code 1(a) and Code 1(b)].The PROC PRINT step lists all the data in the Work.lact_1a data set. If the user-defined library is assigned as in case of the Code 1(b), SAS uses the user-defined library (Aksas in present case) rather than the Work library for one-level names. Submit the program and view output When you submit a SAS program, SAS compiles (checks the code for its grammatical correctness in SAS perspective) and executes (if compilation process is successful) the code and returns expected results (provided the code is logically correct) to the Output Window. 1. With the Editor Window active, select Run Submit. To submit only a portion of a program in the Editor Window, highlight the portion you want to submit, right-click the highlighted area, and select Submit Selection. 2. The Output Window comes to the front (Fig.5). Scroll the window and notice that the PRINT procedure has printed all the data from the lactation data set. In addition, the procedure has automatically formatted the data into rows and columns. Fig.5: Results of the Code 1(a) SAS program being displayed in the OUTPUT Window.

11 View the log Each time a step is executed, SAS generates a log of the processing activities and the results of the processing. The SAS log collects messages about the processing of SAS programs and any errors that may occur. Click the Log Window to activate it. The contents of the Log Window produced by SAS for the Code 1(a) program are shown in Fig.6. Notice that there are separate messages for the DATA and PROC steps. The messages from the DATA step tell you that SAS read 32 observations from the Aksas.lactation data set and that there are 32 observations and 4 variables in the new data set Work.lact_1a. The messages from the PROC step tell you that 32 observations were read during the PRINT procedure. There are no error messages. Fig.6: The contents of the Log Window produced by SAS while executing the Code 1(a) program. It s important that you understand how SAS processes DATA steps (one observation at a time) and PROC steps. You should also learn methods and tips for debugging SAS programs. For details on these topics, refer to the SAS documentation. Use the Results Window Once you have created output for Code 1(a), the Results Window opens. On windows, the Results Window covers the Explorer Window. You can switch between the two windows using the tabs at the bottom of the window. 1. Look at the Results Window. The Results node at the top of the window contains a folder for the output of the PROC PRINT procedure (Fig.7). The folder is labeled with the procedure name and the title (default in present example) of the report. 2. Click the expansion icon next to the folder. 3. Double-click Data Set Work.lact_1a. The Output Window (Fig.5) scrolls to the top of the output.

12 Fig.7: The contents of the Results Window produced by SAS while executing the Code 1(a) program. Note that each time you run a program that creates output; the new output is appended to the last output in the Output Window. You can double-click the output item in the Results Window to scroll the Output Window to the top of that particular output. If you clear the Output Window, the links in the Results Window are deleted. Create HTML output You ve seen that you can create SAS listing output in the Output Window, but you can also set preferences to create HTML output (Fig.8). Your preferences are stored from session to session. 1. Select Tools Options Preferences. 2. Click the Results tab. 3. Select the Create HTML check box and click OK.

13 Fig.8: Setting preferences to create HTML output. Modify the program Now that you have seen the output and formatting for the PRINT procedure, let s try adding options to the program to incorporate the following changes: Remove the date from the top of each page, which SAS prints by default Replace the default The SAS System title with Use the column label rather than the column name in the output Remove the Obs column. We can do this by using a SAS system option, a TITLE statement, and options on the PROC PRINT statement. To remove the date from the top of each page, use the NODATE system option. Insert the following OPTIONS statement at the top of the program: options nodate; to replace the default title, use the TITLE statement. Insert the line, title State, Lactation and Breed wise Milk Yield Report ; above the RUN statement for the PROC PRINT procedure. By including the TITLE statement in the PROC step, the title is applied to the output of the procedure. To remove the Obs column and use column labels, use options on the PROC PRINT statement. Change the PROC PRINT statement to add the LABEL and NOOBS options. Your PROC PRINT statement should look like this: proc print data=lact_1b label noobs. The revised program should look like as shown below. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.lact_1b; SET aksas.lactation; PROC PRINT DATA=aksas.lact_1b label noobs; TITLE "State, Lactation and Breed wise Milk Yield Report";

14 OPTIONS; TITLE; Select Run Submit the above program; it produces the following revised output (compare it with that given in Fig.5): Fig.9: Revised output without system date as well as having user-defined title replacing the default SAS title on top of the report. With the Results Viewer Window active, select File Save As. In the File name box, type e:\aksas\lactation.htm. Click Save. Look at the Results Window. Notice that there is a new folder for the results of the program you just ran. The folder name uses the State, Lactation and Breed wise Milk Yield Report title that you specified in your program. Double-click the Print: State, Lactation and Breed wise Milk Yield Report folder, then double-click Data Set Aksas.lact_1b. There are links to both the listing output and the HTML output (Fig.10).

15 Fig.10: Revised Results with links to simple output and HTML formats. Now you ve learned the basic steps for creating, submitting (running), and saving SAS programs. Creating simple data sets and manipulating the data with SAS program Earlier, we imported data from an already existing data file in different formats such as MS- Excel worksheet or ASCII formats to build up SAS data set. The following example program illustrates as to how to create a SAS data set directly through programming. Example 2: Let us create directly a SAS data set for the data given in Example-1 above. We use the following program (a revised version of code 1(b) above). The data set is saved as aksas.lactation_.sas7bdat. Explanation of the code is given at its end. OPTIONS NODATE; LIBNAME aksas 'd:\aksas'; DATA aksas.lactation_; INPUT state $ lact $ breed $ MY;

16 CARDS; Haryana 1 Hariana 18 Haryana 2 Hariana 19 Haryana 3 Hariana 21 Haryana 4 Hariana 20 Haryana 1 Tharparkar 23 Haryana 2 Tharparkar 25 Haryana 3 Tharparkar 22 Haryana 4 Tharparkar 21 Haryana 1 Sahiwal 22 Haryana 2 Sahiwal 24 Haryana 3 Sahiwal 23 Haryana 4 Sahiwal 23 Haryana 1 Red Sindhi 27 Haryana 2 Red Sindhi 26 Haryana 3 Red Sindhi 25 Haryana 4 Red Sindhi 25 Panjab 1 Hariana 25 Panjab 2 Hariana 36 Panjab 3 Hariana 35 Panjab 4 Hariana 37 Panjab 1 Tharparkar 30 Panjab 2 Tharparkar 32 Panjab 3 Tharparkar 29 Panjab 4 Tharparkar 30 Panjab 1 Sahiwal 26 Panjab 2 Sahiwal 29 Panjab 3 Sahiwal 30 Panjab 4 Sahiwal 38 Panjab 1 Red Sindhi 29 Panjab 2 Red Sindhi 25 Panjab 3 Red Sindhi 27 Panjab 4 Red Sindhi 28 ; PROC PRINT DATA = aksas.lactation_ label noobs; TITLE "State, Lactation and Breed wise Milk Yield Report"; OPTIONS; TITLE; Program Explanation (Example 2): As stated earlier, this program creates a data set, lactation_.sas7bdat under Aksas library. The above program needs some explanation for readers comprehension. The input statement has been incorporated under the DATA step. This statement creates the variables, state, lact, breed and my denoting State Name, Lactation Number, Breed Name and Milk Yield, respectively. Note the $ symbol following the variable names, state, lact and breed each under input statement indicates that these variables are all of type alpha-numeric or non-numeric, or character, i.e., no statistical/mathematical analysis is employed on these variables, though these variables may be used as grouping variables for classification of the underlying data. The readers

17 should note it carefully that the data values assumed by the lact variable seem to be numeric (1-4) but these values are like only serial numbers, which do not directly participate in the data analysis, e.g., you will never compute average lactation number as it makes no sense. Hence, such variables are better defined as character type variables (to be used as grouping variables) rather than numeric variables, for you will not appreciate if the lactation number is represented as 1.00, The data type of the variable, my (denoting milk yield) is numeric. Further, the statement cards used in conjunction with the input statement indicates to the SAS system that each of the rows following cards statement represent one case or record pertaining to the milk production of a particular breed of dairy cow in a specific state, pertaining to a specific lactation number. Several cases can be included here and the end of the data is marked with a semi-colon (;). Note it carefully that the DATA step does not terminate with run statement in such a case; rather it ends with only a semi-colon. Also, note that each variable in input statement is separated with a blank space. Each case is written on a separate line and the data value for each variable on this line is written in the same order as defined in the input statement. This program produces same output as shown in Fig.9. Example 3: The following table gives the gain in body weight (kg) per heifer during four grazing treatments: Heifer number Gain in body weight (kg) Treatments T 1 T 2 T 3 T Test whether the mean gain in weight of heifers under four treatments is equal or not? You know that this is a typical example of one-way Analysis of Variance (ANOVA). Therefore, the SAS program to first create the data set and then perform the one-way ANOVA on this data set is as follows: LIBNAME aksas 'd:\aksas'; DATA aksas.bla256; INPUT TREAT $ GAIN; CARDS; T T T T T T1 64.2

18 T T T T T T T T T T T T T T T T T T ; PROC ANOVA DATA=aksas.bla256; CLASS TREAT; MODEL GAIN=TREAT; TITLE 'COMPARE MEAN GAIN IN BODY WEIGHT OF HEIFERS UNDER FOUR TREATMENTS - ONE-WAY ANOVA'; QUIT; Program explanation (Example 3): Similar to previous Example-2, the DATA step here creates data set containing data on two variables, TREAT and GAIN denoting grazing treatments (grouping variable) and gain in body weight, respectively. Note that the cases are presented sequentially treatment wise, i.e., following the order: T 1, T 2, T 3 and T 4. The SAS system expects you to present the one-way data for ANOVA in this fashion only. Now, further look at the PROC ANOVA step. (Note: the PROC ANOVA is presented here so as to highlight the layout of the data within the data set under DATA step in perspective with ANOVA as the arrangement of data in data set depends upon the intended analysis tool to be employed on the data set). The PROC ANOVA step performs oneway analysis of variance procedure on the underlying data set. PROC ANOVA is relatively easy to use. Let s look at the code statement-by-statement. PROC ANOVA DATA = aksas.bla256; This statement defines that we want to use the ANOVA procedure on the data set called aksas.bla256.sas7bdat, which was created under the DATA step above. Now, consider the next statement in PROC ANOVA step: CLASS TREAT;

19 This defines TREAT (independent variable) as class variable. This is how we specify the associated values to be grouped. Further, consider the next statement: MODEL GAIN=TREAT; It tells SAS what model we want to test. This statement signifies that GAIN (on LHS to = sign) is the response variable or dependent variable and TREAT (on RHS to = sign) is a factor or independent variable. Complete description of any SAS step and statements contained therein can be obtained through inbuilt HELP documentation. This program produces the ANOVA table along with several other results as follows: COMPARE MEAN GAIN IN BODY WEIGHT OF HEIFERS UNDER FOUR TREATMENTS - ONE-WAY ANOVA The ANOVA Procedure Dependent Variable: GAIN The ANOVA Procedure Class Level Information Class Levels Values TREAT 4 T1 T2 T3 T4 Number of Observations Read 24 Number of Observations Used 24 Source DF Sum of Squares Mean Square F Value Pr > F Model Error Corrected Total R-Square Coeff Var Root MSE GAIN Mean Source DF Anova SS Mean Square F Value Pr > F TREAT Note: Complete details of the analysis and interpretation of the results are discussed elsewhere (by different authors) in this e-course.

20 Fat Content SAS Programming Essentials for Statistical Computing in Dairy Research Example 4: The following table gives the fat content for four batches of paneer : Batch Write a SAS program to create data set to analyse the data for variation among batches with regard to fat content in paneer. This is the example of one-way ANOVA, which is similar to the previous Example-3. Therefore, the SAS program to create the requisite data set file for the data given in the above table and to print the observations contained in the newly created data file is a follows: OPTIONS NODATE; LIBNAME aksas 'd:\aksas'; DATA aksas.ex4; INPUT batch $ fat_cont; cards; B B B B B B B B B B B B B B B B B B B ; PROC PRINT DATA = aksas.ex4; TITLE "Analysis of variance between batches w.r.t. fat content in Paneer"; TITLE; OPTIONS; QUIT;

21 Batch SAS Programming Essentials for Statistical Computing in Dairy Research Program output (Example 4) Analysis of variance between batches w.r.t. fat content in Paneer Obs batch fat_cont 1 B B B B B B B B B B B B B B B B B B B Example 5: Four batches of butter were prepared by churning cream. Three fat levels in cream and three churning speeds were taken for preparation of butter. The moisture content (mc) in butter for the four batches is given below: Fat Level 30% 40% 50% Churning Speed (RPM) Churning Speed (RPM) Churning Speed (RPM) Write a SAS program to prepare a data file to perform two-way ANOVA with interaction. This is an example of two-way classification of data with observations per cell ANOVA. The program to create SAS data set file for this problem is given below (Note: Codes used for the variables, fat level (f_level), speed (speed) and batch (batch) are 1-3, 1-3 and 1-4, respectively) :

22 LIBNAME aksas 'd:\aksas'; DATA aksas.twoway_m; INPUT f_level speed batch mc; CARDS; ; PROC GLM DATA = aksas.twoway_m; CLASS f_level speed batch; MODEL mc = f_level speed f_level*speed; TITLE 'Analyse the effects of fat level and speed'; TITLE2 'Including Interaction'; QUIT;

23 Program output (Example 5): Analyse the effects of fat level and speed Including Interaction Obs f_level speed batch mc

24 Example programs (using data set, aksas.lactation.sas7bdat given in Example-1 above) Ex.1. Let us learn how to work with SAS data set and to access and browse SAS data libraries. The following program demonstrates how to generate a list of all the SAS files in the data library (aksas in this case) using _ALL_ keyword. Note that NODS option suppresses the descriptor portions of the data sets. NODS is used in conjunction with the keyword _ALL_. LIBNAME aksas d:\aksas ; PROC CONTENTS DATA = aksas._all_ nods; Ex.2. The following program displays contents of the aksas.test data set file as well as prints listing of the data set according to specified condition and order. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.test; SET aksas.lactation; PROC CONTENTS DATA = aksas.test; PROC PRINT DATA=aksas.test; TITLE State, Lactation and Breed wise Milk Yield Report ; WHERE state= Haryana ; VAR my lact; Output produced by SAS Program (Ex.2): State, Lactation and Breed wise Milk Yield Report Obs MY LACT

25 Program explanation (Ex.2): Two new statements, where and var have been introduced under PROC PRINT procedure, which need explanation. The other statements have been defined already. A where statement is used to select cases from a SAS data set that meet a particular condition. Thus, where statement subsets the input data by specifying certain condition(s) that each observation must meet before it is available for processing. The condition(s) that you define in a where statement is an arithmetic or logical expression that generally consists of a sequence of operands and operators. To compare character values, you must enclose them in single or double quotation marks and the values must match exactly, including capitalisation. Using the where statement might improve the efficiency of your SAS programs because SAS is not required to read all the observations in the input data set. Note: You can use only one where statement in a DATA step or a PROC step. Now, let us further discuss the program described in this Example-2. The where statement is used here to define certain condition or compound condition (connected through AND, OR or NOT logical operators, etc. For more details on SAS operators visit: viewer.htm#a htm) to be tested by SAS for selective data extraction from source data set (aksas.lactation.sas7bdat in this case) into the destination data set (aksas.test.sas7bdat in this exercise program). Consider the following statement: WHERE state= Haryana ; This instructs to SAS that extract all those cases from the original data set for which the state variable contains data value as Haryana and stores them into destination data set file aksas.test. The = sign used in such conditions as above is for comparison and not for equality. Note that state variable is of character data type; therefore, while matching its data value, Haryana is enclosed in single quote marks. If the variable is numeric type, we equate the data value to the variable as such, e.g., my > 18 (i.e., extract all the cases for which milk yield is greater than 18). We can replace earlier condition with the following: WHERE state= Haryana and my between 20 and 30; This statement would extract all the cases having state as Haryana as well as milk yield lying in the interval [20, 30] (see output with this compound condition instead of earlier simple condition, at the end of this paragraph). Now, consider the statement: VAR my lact; This indicates to SAS that while printing the information from the destination data set file, consider only variables listed under var statement, i.e., my and lact in this case. The information will be printed according to the order in which the variable names are mentioned under var statement irrespective of the original order in which these variables have been actually stored in

26 computer memory. Hence, we can alter the order of variables while printing the report without disturbing their original settings. Output of SAS Program (Ex.2) with compound condition in where statement: State, Lactation and Breed wise Milk Yield Report Obs MY LACT Programs for practice (All the following programs use data set, aksas.lactation.sas7bdat given in Example-1 above) Now the readers can try the following programs similar to the program discussed in Example-2 above. You will come across some new statements and options that are explained; however, you can comprehend the new statements through inbuilt SAS help. Ex.1. Program to subset cases from the master or base data set file, lactation.sas7bdat into sub data set or target file, red_sin.sas7bdat pertaining to Red Sindhi breed of dairy cattle for both the states. Logical operator OR is used to form the compound condition in PROC PRINT step; this means that it will extract the case if either of the two conditions is found TRUE. (Note: This is unlike AND operator used in Example-2; which was used to test both the conditions to be TRUE simultaneously). As stated earlier, spellings and case for the pattern matching string say, Panjab should be unique throughout. If you store the state as Panjab and search for Punjab or panjab, etc., SAS will not be able to find it even though the one exists in data set file! SAS Program (Ex.1): OPTIONS NODATE; LIBNAME aksas d:\aksas ; Data aksas.red_sin; Set aksas.lactation;

27 PROC CONTENTS DATA = aksas.red_sin; Proc Print Data=aksas.red_sin; Title "State, Lactation and Breed wise Milk Yield Report"; Where (state= Haryana and breed= Red Sindhi ) or (state= Panjab and breed= Red Sindhi ); Var lact my; Run; Ex.2. This program subsets and prints the Haryana state s cases on variables breed, lact and my. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.lact_hry; SET aksas.lactation; WHERE state= Haryana ; PROC PRINT DATA=aksas.lact_hry; TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR breed lact my; Ex.3. This program subsets and prints the Panjab state s cases on variables state, breed, lact and my. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.lact_pb; SET aksas.lactation; WHERE state = Panjab ; PROC PRINT DATA=aksas.lact_pb; TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR state breed lact my; Ex.4. This subsets and prints the Panjab state s cases on variables state, breed, lact and my according to the criterion my between 30 and 35. This example demonstrates a different way to perform the operation my between 30 and 35. SAS provides different tools to perform such operations. Referring to the inbuilt Help is a good idea to learn new tools in SAS. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.lact_pb; SET aksas.lactation; WHERE state = Panjab and (my>=30 and my<=35); PROC PRINT DATA=aksas.lact_pb;

28 TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR state breed lact my; Ex.5. This is similar to the Ex.4; and subsets and prints the Panjab state s cases on variables state, breed, lact and my according to the criterion my between 30 and 35 using still another option to perform the same operation my between 30 and 35. OPTIONS NODATE; LIBNAME aksas d:\aksas ; DATA aksas.lact_pb; SET aksas.lactation; WHERE state = Panjab and (30<=my<=35); PROC PRINT DATA=aksas.lact_pb; TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR state breed lact my; Ex.6. This program is also similar to the Ex.4; and i) subsets and prints the Panjab state s cases on variables state, breed, lact and my according to the criterion my between 30 and 35 ; and ii) subsets and prints the Haryana state s cases on variables state, breed, lact and my according to the criterion my > 22. This program demonstrates the use of like operator with where statement. The like operator selects cases by comparing the values of a character variable to a specified pattern (called pattern matching). The like operator is case sensitive. There are two special characters available for specifying a pattern: a) Percent sign (%) specifies that any number of characters can occupy that position. The following where expressions select all cases having state with a data value that starts with the letters Pan and H, respectively. The data value contained in variable, state can be of any length. WHERE state like Pan% ; WHERE state like H% ; b) Underscore (_) matches just one character in the value for each underscore character. You can specify more than one consecutive underscore character in a pattern, and you can specify a percent sign and an underscore in the same pattern. WHERE state LIKE 'P_n%'; (Note: data may now contain mixed names like Panjab or Punjab) WHERE state LIKE Har_a% ; (Note: data may now contain mixed names like Haryana or Hariana)

29 SAS Programs (Ex.6): i) OPTIONS NODATE; LIBNAME aksas "d:\aksas"; DATA aksas.lact_pb; SET aksas.lactation; WHERE state LIKE "Pan%" and (my between 30 and 35); PROC PRINT DATA=aksas.lact_pb; TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR state breed lact my; Program Output (Ex.6-i): ii) OPTIONS NODATE; LIBNAME aksas "d:\aksas"; DATA aksas.lact_hry; SET aksas.lactation; WHERE state LIKE "H%" and (my>22); State, Lactation and Breed wise Milk Yield Report Obs STATE BREED LACT MY 1 Panjab Hariana Panjab Tharparkar Panjab Tharparkar Panjab Tharparkar Panjab Sahiwal 3 30 PROC PRINT DATA=aksas.lact_hry; TITLE "State, Lactation and Breed wise Milk Yield Report"; VAR state breed lact my; Program output (Ex.6-ii): State, Lactation and Breed wise Milk Yield Report Obs STATE BREED LACT MY 1 Haryana Tharparkar Haryana Tharparkar Haryana Sahiwal Haryana Sahiwal 3 23

30 5 Haryana Sahiwal Haryana Red Sindhi Haryana Red Sindhi Haryana Red Sindhi Haryana Red Sindhi 4 25 Ex.7. This program subsets and prints the cases for the state of Haryana. This example demonstrates a different way to perform the operation through subsetting IF statement rather than where statement. The IF statement causes the DATA step to continue processing only those raw data records or those observations from a SAS data set that meet the condition of the expression that is specified in the IF statement. That is, if the expression is TRUE for the case (its value is neither 0 nor missing), SAS continues to execute statements in the DATA step and includes the current case in the data set. The resulting SAS data set(s) contains a subset of the original external file or SAS data set. If the expression is FALSE (its value is 0 or missing), no further statements are processed for that case, the current case is not written to the data set, and the remaining program statements in the DATA step are not executed. SAS immediately returns to the beginning of the DATA step because the subsetting IF statement does not require additional statements to stop processing cases. The subsetting IF statement is equivalent to this IF-THEN statement, e.g. IF (condition) THEN SAS statement; While creating SAS data sets, you can use the subsetting IF statement when it is easier to specify a condition for including cases. When it is easier to specify a condition for excluding cases, use the DELETE statement. See examples below for understanding the logic. The subsetting IF and the where statements are not equivalent! The two statements work differently and produce different output data sets in some cases. The most important differences are summarised below: The subsetting IF statement selects observations that have been read into the program data vector. The where statement selects observations before they are brought into the program data vector. The subsetting IF might be less efficient than the where statement because it must read each observation from the input data set into the program data vector. The subsetting IF statement and where statement can produce different results in DATA steps that interleave, merge, or update SAS data sets. The subsetting IF statement can select cases from an existing SAS data set or from raw data that are read with the INPUT statement. The where statement can select cases only from existing SAS data sets. The subsetting IF statement is executable; the where statement is not.

SPSS: Getting Started. For Windows

SPSS: Getting Started. For Windows For Windows Updated: August 2012 Table of Contents Section 1: Overview... 3 1.1 Introduction to SPSS Tutorials... 3 1.2 Introduction to SPSS... 3 1.3 Overview of SPSS for Windows... 3 Section 2: Entering

More information

From The Little SAS Book, Fifth Edition. Full book available for purchase here.

From The Little SAS Book, Fifth Edition. Full book available for purchase here. From The Little SAS Book, Fifth Edition. Full book available for purchase here. Acknowledgments ix Introducing SAS Software About This Book xi What s New xiv x Chapter 1 Getting Started Using SAS Software

More information

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc.

STATGRAPHICS Online. Statistical Analysis and Data Visualization System. Revised 6/21/2012. Copyright 2012 by StatPoint Technologies, Inc. STATGRAPHICS Online Statistical Analysis and Data Visualization System Revised 6/21/2012 Copyright 2012 by StatPoint Technologies, Inc. All rights reserved. Table of Contents Introduction... 1 Chapter

More information

Microsoft Access 2010 Part 1: Introduction to Access

Microsoft Access 2010 Part 1: Introduction to Access CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES Microsoft Access 2010 Part 1: Introduction to Access Fall 2014, Version 1.2 Table of Contents Introduction...3 Starting Access...3

More information

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access

Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix ABSTRACT INTRODUCTION Data Access Release 2.1 of SAS Add-In for Microsoft Office Bringing Microsoft PowerPoint into the Mix Jennifer Clegg, SAS Institute Inc., Cary, NC Eric Hill, SAS Institute Inc., Cary, NC ABSTRACT Release 2.1 of SAS

More information

Create a New Database in Access 2010

Create a New Database in Access 2010 Create a New Database in Access 2010 Table of Contents OVERVIEW... 1 CREATING A DATABASE... 1 ADDING TO A DATABASE... 2 CREATE A DATABASE BY USING A TEMPLATE... 2 CREATE A DATABASE WITHOUT USING A TEMPLATE...

More information

MICROSOFT ACCESS 2003 TUTORIAL

MICROSOFT ACCESS 2003 TUTORIAL MICROSOFT ACCESS 2003 TUTORIAL M I C R O S O F T A C C E S S 2 0 0 3 Microsoft Access is powerful software designed for PC. It allows you to create and manage databases. A database is an organized body

More information

1. Base Programming. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming»

1. Base Programming. GIORGIO RUSSOLILLO - Cours de prépara+on à la cer+fica+on SAS «Base Programming» 1. Base Programming GIORGIO RUSSOLILLO Cours de prépara+on à la cer+fica+on SAS «Base Programming» 9 What is SAS Highly flexible and integrated soiware environment; you can use SAS for: GIORGIO RUSSOLILLO

More information

Introduction to SAS on Windows

Introduction to SAS on Windows https://udrive.oit.umass.edu/statdata/sas1.zip Introduction to SAS on Windows for SAS Versions 8 or 9 October 2009 I. Introduction...2 Availability and Cost...2 Hardware and Software Requirements...2 Documentation...2

More information

Search help. More on Office.com: images templates

Search help. More on Office.com: images templates Page 1 of 14 Access 2010 Home > Access 2010 Help and How-to > Getting started Search help More on Office.com: images templates Access 2010: database tasks Here are some basic database tasks that you can

More information

An introduction to using Microsoft Excel for quantitative data analysis

An introduction to using Microsoft Excel for quantitative data analysis Contents An introduction to using Microsoft Excel for quantitative data analysis 1 Introduction... 1 2 Why use Excel?... 2 3 Quantitative data analysis tools in Excel... 3 4 Entering your data... 6 5 Preparing

More information

Personal Geodatabase 101

Personal Geodatabase 101 Personal Geodatabase 101 There are a variety of file formats that can be used within the ArcGIS software. Two file formats, the shape file and the personal geodatabase were designed to hold geographic

More information

Web Intelligence User Guide

Web Intelligence User Guide Web Intelligence User Guide Office of Financial Management - Enterprise Reporting Services 4/11/2011 Table of Contents Chapter 1 - Overview... 1 Purpose... 1 Chapter 2 Logon Procedure... 3 Web Intelligence

More information

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ

Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ PharmaSUG 2014 PO10 Switching from PC SAS to SAS Enterprise Guide Zhengxin (Cindy) Yang, inventiv Health Clinical, Princeton, NJ ABSTRACT As more and more organizations adapt to the SAS Enterprise Guide,

More information

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms

Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms Learn how to create web enabled (browser) forms in InfoPath 2013 and publish them in SharePoint 2013. InfoPath 2013 Web Enabled (Browser) forms InfoPath 2013 Web Enabled (Browser) forms Creating Web Enabled

More information

Introduction to SPSS 16.0

Introduction to SPSS 16.0 Introduction to SPSS 16.0 Edited by Emily Blumenthal Center for Social Science Computation and Research 110 Savery Hall University of Washington Seattle, WA 98195 USA (206) 543-8110 November 2010 http://julius.csscr.washington.edu/pdf/spss.pdf

More information

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations.

EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. EXCEL Tutorial: How to use EXCEL for Graphs and Calculations. Excel is powerful tool and can make your life easier if you are proficient in using it. You will need to use Excel to complete most of your

More information

Using the SAS Enterprise Guide (Version 4.2)

Using the SAS Enterprise Guide (Version 4.2) 2011-2012 Using the SAS Enterprise Guide (Version 4.2) Table of Contents Overview of the User Interface... 1 Navigating the Initial Contents of the Workspace... 3 Useful Pull-Down Menus... 3 Working with

More information

Importing and Exporting With SPSS for Windows 17 TUT 117

Importing and Exporting With SPSS for Windows 17 TUT 117 Information Systems Services Importing and Exporting With TUT 117 Version 2.0 (Nov 2009) Contents 1. Introduction... 3 1.1 Aim of this Document... 3 2. Importing Data from Other Sources... 3 2.1 Reading

More information

Data Mining. SPSS Clementine 12.0. 1. Clementine Overview. Spring 2010 Instructor: Dr. Masoud Yaghini. Clementine

Data Mining. SPSS Clementine 12.0. 1. Clementine Overview. Spring 2010 Instructor: Dr. Masoud Yaghini. Clementine Data Mining SPSS 12.0 1. Overview Spring 2010 Instructor: Dr. Masoud Yaghini Introduction Types of Models Interface Projects References Outline Introduction Introduction Three of the common data mining

More information

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN

Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN Paper TS600 Introduction to SAS Business Intelligence/Enterprise Guide Alex Dmitrienko, Ph.D., Eli Lilly and Company, Indianapolis, IN ABSTRACT This paper provides an overview of new SAS Business Intelligence

More information

Business Insight Report Authoring Getting Started Guide

Business Insight Report Authoring Getting Started Guide Business Insight Report Authoring Getting Started Guide Version: 6.6 Written by: Product Documentation, R&D Date: February 2011 ImageNow and CaptureNow are registered trademarks of Perceptive Software,

More information

SPSS (Statistical Package for the Social Sciences)

SPSS (Statistical Package for the Social Sciences) SPSS (Statistical Package for the Social Sciences) What is SPSS? SPSS stands for Statistical Package for the Social Sciences The SPSS home-page is: www.spss.com 2 What can you do with SPSS? Run Frequencies

More information

SAS Add-In 2.1 for Microsoft Office: Getting Started with Data Analysis

SAS Add-In 2.1 for Microsoft Office: Getting Started with Data Analysis SAS Add-In 2.1 for Microsoft Office: Getting Started with Data Analysis The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2007. SAS Add-In 2.1 for Microsoft Office: Getting

More information

Introduction to PASW Statistics 34152-001

Introduction to PASW Statistics 34152-001 Introduction to PASW Statistics 34152-001 V18 02/2010 nm/jdr/mr For more information about SPSS Inc., an IBM Company software products, please visit our Web site at http://www.spss.com or contact: SPSS

More information

IBM SPSS Statistics 20 Part 1: Descriptive Statistics

IBM SPSS Statistics 20 Part 1: Descriptive Statistics CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 1: Descriptive Statistics Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS

REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS REUTERS/TIM WIMBORNE SCHOLARONE MANUSCRIPTS COGNOS REPORTS 28-APRIL-2015 TABLE OF CONTENTS Select an item in the table of contents to go to that topic in the document. USE GET HELP NOW & FAQS... 1 SYSTEM

More information

Introduction to MS WINDOWS XP

Introduction to MS WINDOWS XP Introduction to MS WINDOWS XP Mouse Desktop Windows Applications File handling Introduction to MS Windows XP 2 Table of Contents What is Windows XP?... 3 Windows within Windows... 3 The Desktop... 3 The

More information

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES

MODULE 2: SMARTLIST, REPORTS AND INQUIRIES MODULE 2: SMARTLIST, REPORTS AND INQUIRIES Module Overview SmartLists are used to access accounting data. Information, such as customer and vendor records can be accessed from key tables. The SmartList

More information

Working together with Word, Excel and PowerPoint

Working together with Word, Excel and PowerPoint Working together with Word, Excel and PowerPoint Have you ever wanted your Word document to include data from an Excel spreadsheet, or diagrams you ve created in PowerPoint? This note shows you how to

More information

Getting Started With SPSS

Getting Started With SPSS Getting Started With SPSS To investigate the research questions posed in each section of this site, we ll be using SPSS, an IBM computer software package specifically designed for use in the social sciences.

More information

DiskPulse DISK CHANGE MONITOR

DiskPulse DISK CHANGE MONITOR DiskPulse DISK CHANGE MONITOR User Manual Version 7.9 Oct 2015 www.diskpulse.com info@flexense.com 1 1 DiskPulse Overview...3 2 DiskPulse Product Versions...5 3 Using Desktop Product Version...6 3.1 Product

More information

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved.

Evaluator s Guide. PC-Duo Enterprise HelpDesk v5.0. Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. Evaluator s Guide PC-Duo Enterprise HelpDesk v5.0 Copyright 2006 Vector Networks Ltd and MetaQuest Software Inc. All rights reserved. All third-party trademarks are the property of their respective owners.

More information

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS

Introduction. Why Use ODBC? Setting Up an ODBC Data Source. Stat/Math - Getting Started Using ODBC with SAS and SPSS Introduction Page 1 of 15 The Open Database Connectivity (ODBC) standard is a common application programming interface for accessing data files. In other words, ODBC allows you to move data back and forth

More information

How To Create A Report In Excel

How To Create A Report In Excel Table of Contents Overview... 1 Smartlists with Export Solutions... 2 Smartlist Builder/Excel Reporter... 3 Analysis Cubes... 4 MS Query... 7 SQL Reporting Services... 10 MS Dynamics GP Report Templates...

More information

SAS Analyst for Windows Tutorial

SAS Analyst for Windows Tutorial Updated: August 2012 Table of Contents Section 1: Introduction... 3 1.1 About this Document... 3 1.2 Introduction to Version 8 of SAS... 3 Section 2: An Overview of SAS V.8 for Windows... 3 2.1 Navigating

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.2 Content Author's Reference and Cookbook Rev. 091019 Sitecore CMS 6.2 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Introduction to Microsoft Access 2013

Introduction to Microsoft Access 2013 Introduction to Microsoft Access 2013 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

Access Queries (Office 2003)

Access Queries (Office 2003) Access Queries (Office 2003) Technical Support Services Office of Information Technology, West Virginia University OIT Help Desk 293-4444 x 1 oit.wvu.edu/support/training/classmat/db/ Instructor: Kathy

More information

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide

Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick Reference Guide Open Crystal Reports From the Windows Start menu choose Programs and then Crystal Reports. Creating a Blank Report Ohio University Computer Services Center August, 2002 Crystal Reports Introduction Quick

More information

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3

Before You Begin... 2 Running SAS in Batch Mode... 2 Printing the Output of Your Program... 3 SAS Statements and Syntax... 3 Using SAS In UNIX 2010 Stanford University provides UNIX computing resources on the UNIX Systems, which can be accessed through the Stanford University Network (SUNet). This document provides a basic overview

More information

MS Access Lab 2. Topic: Tables

MS Access Lab 2. Topic: Tables MS Access Lab 2 Topic: Tables Summary Introduction: Tables, Start to build a new database Creating Tables: Datasheet View, Design View Working with Data: Sorting, Filtering Help on Tables Introduction

More information

Excel 2002. What you will do:

Excel 2002. What you will do: What you will do: Explore the features of Excel 2002 Create a blank workbook and a workbook from a template Format a workbook Apply formulas to a workbook Create a chart Import data to a workbook Share

More information

Creating and Using Databases with Microsoft Access

Creating and Using Databases with Microsoft Access CHAPTER A Creating and Using Databases with Microsoft Access In this chapter, you will Use Access to explore a simple database Design and create a new database Create and use forms Create and use queries

More information

Excel Database Management Microsoft Excel 2003

Excel Database Management Microsoft Excel 2003 Excel Database Management Microsoft Reference Guide University Technology Services Computer Training Copyright Notice Copyright 2003 EBook Publishing. All rights reserved. No part of this publication may

More information

Chapter 5. Microsoft Access

Chapter 5. Microsoft Access Chapter 5 Microsoft Access Topic Introduction to DBMS Microsoft Access Getting Started Creating Database File Database Window Table Queries Form Report Introduction A set of programs designed to organize,

More information

Word 2007: Basics Learning Guide

Word 2007: Basics Learning Guide Word 2007: Basics Learning Guide Exploring Word At first glance, the new Word 2007 interface may seem a bit unsettling, with fat bands called Ribbons replacing cascading text menus and task bars. This

More information

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide

9.1 SAS/ACCESS. Interface to SAP BW. User s Guide SAS/ACCESS 9.1 Interface to SAP BW User s Guide The correct bibliographic citation for this manual is as follows: SAS Institute Inc. 2004. SAS/ACCESS 9.1 Interface to SAP BW: User s Guide. Cary, NC: SAS

More information

Chapter 2 The Data Table. Chapter Table of Contents

Chapter 2 The Data Table. Chapter Table of Contents Chapter 2 The Data Table Chapter Table of Contents Introduction... 21 Bringing in Data... 22 OpeningLocalFiles... 22 OpeningSASFiles... 27 UsingtheQueryWindow... 28 Modifying Tables... 31 Viewing and Editing

More information

Hypercosm. Studio. www.hypercosm.com

Hypercosm. Studio. www.hypercosm.com Hypercosm Studio www.hypercosm.com Hypercosm Studio Guide 3 Revision: November 2005 Copyright 2005 Hypercosm LLC All rights reserved. Hypercosm, OMAR, Hypercosm 3D Player, and Hypercosm Studio are trademarks

More information

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5.

Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. 1 2 3 4 Database Studio is the new tool to administrate SAP MaxDB database instances as of version 7.5. It replaces the previous tools Database Manager GUI and SQL Studio from SAP MaxDB version 7.7 onwards

More information

COGNOS Query Studio Ad Hoc Reporting

COGNOS Query Studio Ad Hoc Reporting COGNOS Query Studio Ad Hoc Reporting Copyright 2008, the California Institute of Technology. All rights reserved. This documentation contains proprietary information of the California Institute of Technology

More information

WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide

WHO STEPS Surveillance Support Materials. STEPS Epi Info Training Guide STEPS Epi Info Training Guide Department of Chronic Diseases and Health Promotion World Health Organization 20 Avenue Appia, 1211 Geneva 27, Switzerland For further information: www.who.int/chp/steps WHO

More information

Getting Started Guide

Getting Started Guide Getting Started Guide Introduction... 3 What is Pastel Partner (BIC)?... 3 System Requirements... 4 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Partner (BIC) Reports...

More information

Tips and Tricks SAGE ACCPAC INTELLIGENCE

Tips and Tricks SAGE ACCPAC INTELLIGENCE Tips and Tricks SAGE ACCPAC INTELLIGENCE 1 Table of Contents Auto e-mailing reports... 4 Automatically Running Macros... 7 Creating new Macros from Excel... 8 Compact Metadata Functionality... 9 Copying,

More information

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002

EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 EXCEL PIVOT TABLE David Geffen School of Medicine, UCLA Dean s Office Oct 2002 Table of Contents Part I Creating a Pivot Table Excel Database......3 What is a Pivot Table...... 3 Creating Pivot Tables

More information

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1

Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 Simply Accounting Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the SAI reports... 3 Running, Copying and Pasting reports... 4 Creating and linking a report... 5 Auto e-mailing reports...

More information

Editor Manual for SharePoint Version 1. 21 December 2005

Editor Manual for SharePoint Version 1. 21 December 2005 Editor Manual for SharePoint Version 1 21 December 2005 ii Table of Contents PREFACE... 1 WORKFLOW... 2 USER ROLES... 3 MANAGING DOCUMENT... 4 UPLOADING DOCUMENTS... 4 NEW DOCUMENT... 6 EDIT IN DATASHEET...

More information

Using Microsoft Word. Working With Objects

Using Microsoft Word. Working With Objects Using Microsoft Word Many Word documents will require elements that were created in programs other than Word, such as the picture to the right. Nontext elements in a document are referred to as Objects

More information

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1

MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 MAS 500 Intelligence Tips and Tricks Booklet Vol. 1 1 Contents Accessing the Sage MAS Intelligence Reports... 3 Copying, Pasting and Renaming Reports... 4 To create a new report from an existing report...

More information

Microsoft Access Basics

Microsoft Access Basics Microsoft Access Basics 2006 ipic Development Group, LLC Authored by James D Ballotti Microsoft, Access, Excel, Word, and Office are registered trademarks of the Microsoft Corporation Version 1 - Revision

More information

DataPA OpenAnalytics End User Training

DataPA OpenAnalytics End User Training DataPA OpenAnalytics End User Training DataPA End User Training Lesson 1 Course Overview DataPA Chapter 1 Course Overview Introduction This course covers the skills required to use DataPA OpenAnalytics

More information

Intro to Excel spreadsheets

Intro to Excel spreadsheets Intro to Excel spreadsheets What are the objectives of this document? The objectives of document are: 1. Familiarize you with what a spreadsheet is, how it works, and what its capabilities are; 2. Using

More information

Using Microsoft Excel to Manage and Analyze Data: Some Tips

Using Microsoft Excel to Manage and Analyze Data: Some Tips Using Microsoft Excel to Manage and Analyze Data: Some Tips Larger, complex data management may require specialized and/or customized database software, and larger or more complex analyses may require

More information

There are six different windows that can be opened when using SPSS. The following will give a description of each of them.

There are six different windows that can be opened when using SPSS. The following will give a description of each of them. SPSS Basics Tutorial 1: SPSS Windows There are six different windows that can be opened when using SPSS. The following will give a description of each of them. The Data Editor The Data Editor is a spreadsheet

More information

Introduction to Microsoft Access 2003

Introduction to Microsoft Access 2003 Introduction to Microsoft Access 2003 Zhi Liu School of Information Fall/2006 Introduction and Objectives Microsoft Access 2003 is a powerful, yet easy to learn, relational database application for Microsoft

More information

Chapter 4: Website Basics

Chapter 4: Website Basics 1 Chapter 4: In its most basic form, a website is a group of files stored in folders on a hard drive that is connected directly to the internet. These files include all of the items that you see on your

More information

Word 2010: Mail Merge to Email with Attachments

Word 2010: Mail Merge to Email with Attachments Word 2010: Mail Merge to Email with Attachments Table of Contents TO SEE THE SECTION FOR MACROS, YOU MUST TURN ON THE DEVELOPER TAB:... 2 SET REFERENCE IN VISUAL BASIC:... 2 CREATE THE MACRO TO USE WITHIN

More information

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules

IBM Operational Decision Manager Version 8 Release 5. Getting Started with Business Rules IBM Operational Decision Manager Version 8 Release 5 Getting Started with Business Rules Note Before using this information and the product it supports, read the information in Notices on page 43. This

More information

Toad for Data Analysts, Tips n Tricks

Toad for Data Analysts, Tips n Tricks Toad for Data Analysts, Tips n Tricks or Things Everyone Should Know about TDA Just what is Toad for Data Analysts? Toad is a brand at Quest. We have several tools that have been built explicitly for developers

More information

Working with Data in Microsoft Excel 2003

Working with Data in Microsoft Excel 2003 Working with Data in Microsoft Excel 2003 Doc 5.94 Ver 2 March 2005 John Matthews Central Computing Services Abstract This document provides some examples of handling numeric data using the Microsoft Excel

More information

Pastel Evolution BIC. Getting Started Guide

Pastel Evolution BIC. Getting Started Guide Pastel Evolution BIC Getting Started Guide Table of Contents System Requirements... 4 How it Works... 5 Getting Started Guide... 6 Standard Reports Available... 6 Accessing the Pastel Evolution (BIC) Reports...

More information

SQL Server An Overview

SQL Server An Overview SQL Server An Overview SQL Server Microsoft SQL Server is designed to work effectively in a number of environments: As a two-tier or multi-tier client/server database system As a desktop database system

More information

Microsoft Access 3: Understanding and Creating Queries

Microsoft Access 3: Understanding and Creating Queries Microsoft Access 3: Understanding and Creating Queries In Access Level 2, we learned how to perform basic data retrievals by using Search & Replace functions and Sort & Filter functions. For more complex

More information

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC

MyOra 3.0. User Guide. SQL Tool for Oracle. Jayam Systems, LLC MyOra 3.0 SQL Tool for Oracle User Guide Jayam Systems, LLC Contents Features... 4 Connecting to the Database... 5 Login... 5 Login History... 6 Connection Indicator... 6 Closing the Connection... 7 SQL

More information

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA

IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA CALIFORNIA STATE UNIVERSITY, LOS ANGELES INFORMATION TECHNOLOGY SERVICES IBM SPSS Statistics 20 Part 4: Chi-Square and ANOVA Summer 2013, Version 2.0 Table of Contents Introduction...2 Downloading the

More information

Monthly Payroll to Finance Reconciliation Report: Access and Instructions

Monthly Payroll to Finance Reconciliation Report: Access and Instructions Monthly Payroll to Finance Reconciliation Report: Access and Instructions VCU Reporting Center... 2 Log in... 2 Open Folder... 3 Other Useful Information: Copying Sheets... 5 Creating Subtotals... 5 Outlining

More information

Creating QBE Queries in Microsoft SQL Server

Creating QBE Queries in Microsoft SQL Server Creating QBE Queries in Microsoft SQL Server When you ask SQL Server or any other DBMS (including Access) a question about the data in a database, the question is called a query. A query is simply a question

More information

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA

Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA Producing Listings and Reports Using SAS and Crystal Reports Krishna (Balakrishna) Dandamudi, PharmaNet - SPS, Kennett Square, PA ABSTRACT The SAS Institute has a long history of commitment to openness

More information

Excel 2003 Tutorial I

Excel 2003 Tutorial I This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial I Spreadsheet Basics Screen Layout Title bar Menu bar

More information

GeoGebra Statistics and Probability

GeoGebra Statistics and Probability GeoGebra Statistics and Probability Project Maths Development Team 2013 www.projectmaths.ie Page 1 of 24 Index Activity Topic Page 1 Introduction GeoGebra Statistics 3 2 To calculate the Sum, Mean, Count,

More information

Oracle Data Mining Hands On Lab

Oracle Data Mining Hands On Lab Oracle Data Mining Hands On Lab Material provided by Oracle Corporation Vlamis Software Solutions is one of the most respected training organizations in the Oracle Business Intelligence community because

More information

ELOQUA INSIGHT Reporter User Guide

ELOQUA INSIGHT Reporter User Guide ELOQUA INSIGHT Reporter User Guide Copyright 2012 Eloqua Corporation. All rights reserved. July 2012 revision. Table of Contents Preface... 5 Introduction toeloqua Insight Business Intelligence... 6 Introduction

More information

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data.

A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. Microsoft Access A database is a collection of data organised in a manner that allows access, retrieval, and use of that data. A Database Management System (DBMS) allows users to create a database; add,

More information

Content Author's Reference and Cookbook

Content Author's Reference and Cookbook Sitecore CMS 6.5 Content Author's Reference and Cookbook Rev. 110621 Sitecore CMS 6.5 Content Author's Reference and Cookbook A Conceptual Overview and Practical Guide to Using Sitecore Table of Contents

More information

Excel 2010: Create your first spreadsheet

Excel 2010: Create your first spreadsheet Excel 2010: Create your first spreadsheet Goals: After completing this course you will be able to: Create a new spreadsheet. Add, subtract, multiply, and divide in a spreadsheet. Enter and format column

More information

SHAREPOINT 2010 FOUNDATION FOR END USERS

SHAREPOINT 2010 FOUNDATION FOR END USERS SHAREPOINT 2010 FOUNDATION FOR END USERS WWP Training Limited Page i SharePoint Foundation 2010 for End Users Fundamentals of SharePoint... 6 Accessing SharePoint Foundation 2010... 6 Logging in to your

More information

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online

Stores copies of items you sent to others, by default. Stores items created offline that you want to send the next time you are online Outlook Folders: All new messages are stored in Inbox unless rules are created. Stores copies of items you sent to others, by default Stores temporarily deleted items until you permanently delete or retrieve

More information

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data

Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Using Excel (Microsoft Office 2007 Version) for Graphical Analysis of Data Introduction In several upcoming labs, a primary goal will be to determine the mathematical relationship between two variable

More information

Introduction to IBM SPSS Statistics

Introduction to IBM SPSS Statistics CONTENTS Arizona State University College of Health Solutions College of Nursing and Health Innovation Introduction to IBM SPSS Statistics Edward A. Greenberg, PhD Director, Data Lab PAGE About This Document

More information

Getting Started Guide SAGE ACCPAC INTELLIGENCE

Getting Started Guide SAGE ACCPAC INTELLIGENCE Getting Started Guide SAGE ACCPAC INTELLIGENCE Table of Contents Introduction... 1 What is Sage Accpac Intelligence?... 1 What are the benefits of using Sage Accpac Intelligence?... 1 System Requirements...

More information

Introduction to Microsoft Access 2010

Introduction to Microsoft Access 2010 Introduction to Microsoft Access 2010 A database is a collection of information that is related. Access allows you to manage your information in one database file. Within Access there are four major objects:

More information

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com

How To Create A Powerpoint Intelligence Report In A Pivot Table In A Powerpoints.Com Sage 500 ERP Intelligence Reporting Getting Started Guide 27.11.2012 Table of Contents 1.0 Getting started 3 2.0 Managing your reports 10 3.0 Defining report properties 18 4.0 Creating a simple PivotTable

More information

Data Tool Platform SQL Development Tools

Data Tool Platform SQL Development Tools Data Tool Platform SQL Development Tools ekapner Contents Setting SQL Development Preferences...5 Execution Plan View Options Preferences...5 General Preferences...5 Label Decorations Preferences...6

More information

Elisabetta Zodeiko 2/25/2012

Elisabetta Zodeiko 2/25/2012 PRINCETON UNIVERSITY Report Studio Introduction Elisabetta Zodeiko 2/25/2012 Report Studio Introduction pg. 1 Table of Contents 1. Report Studio Overview... 6 Course Overview... 7 Princeton Information

More information

Dynamics CRM for Outlook Basics

Dynamics CRM for Outlook Basics Dynamics CRM for Outlook Basics Microsoft Dynamics CRM April, 2015 Contents Welcome to the CRM for Outlook Basics guide... 1 Meet CRM for Outlook.... 2 A new, but comfortably familiar face................................................................

More information

Microsoft Query, the helper application included with Microsoft Office, allows

Microsoft Query, the helper application included with Microsoft Office, allows 3 RETRIEVING ISERIES DATA WITH MICROSOFT QUERY Microsoft Query, the helper application included with Microsoft Office, allows Office applications such as Word and Excel to read data from ODBC data sources.

More information

Hamline University Administrative Computing Page 1

Hamline University Administrative Computing Page 1 User Guide Banner Handout: BUSINESS OBJECTS ENTERPRISE (InfoView) Document: boxi31sp3-infoview.docx Created: 5/11/2011 1:24 PM by Chris Berry; Last Modified: 8/31/2011 1:53 PM Purpose:... 2 Introduction:...

More information

4 Other useful features on the course web page. 5 Accessing SAS

4 Other useful features on the course web page. 5 Accessing SAS 1 Using SAS outside of ITCs Statistical Methods and Computing, 22S:30/105 Instructor: Cowles Lab 1 Jan 31, 2014 You can access SAS from off campus by using the ITC Virtual Desktop Go to https://virtualdesktopuiowaedu

More information

Using Excel for Statistics Tips and Warnings

Using Excel for Statistics Tips and Warnings Using Excel for Statistics Tips and Warnings November 2000 University of Reading Statistical Services Centre Biometrics Advisory and Support Service to DFID Contents 1. Introduction 3 1.1 Data Entry and

More information