Gerard Pauline and Walter Morris Pace University

Size: px
Start display at page:

Download "Gerard Pauline and Walter Morris Pace University"

Transcription

1 USING SAS/ETS SOFTWARE FOR INSTRUCTION AND RESEARCH AT PACE UNIVERSITY Gerard Pauline and Walter Morris Pace University This paper will be divided into two sections. The first section will describe how data is extracted from the Citibase and Compustat II databases here at Pace University. Section two will explain how students use various SAS/ETS procedures to analyze the extracted data. ' SECTION 1 Our original intention was to find a way to efficiently access, and more importantly, analyze data from the Compustat II database. The only means of doing this, before the SAS/ETS product was acquired, was to go through a set of FORTRAN programs or a product known as TROLL. Neither method proved very satisfying for our user population, particularly those interested in doing research. The 1982 SAS/ETS Guide contained an example of a macro program that accessed one ofthe Compustat files. This was used as a basis to develop individual macros for the other Compustat files (the files have different record layouts). The ETS product also contained a procedure to access data from Citibase, known as PROC CITIBASE. Although easy to use, it did not provide facilities to specify an exact periodicity (i.e to 8603) or to compact data (transform a time series from one format to another), as did the TROLL product. The time series transformation could easily be accomplished in the DATA step, but was confusing for inexperienced users. We decided to try to develop a program that would allow access to any of the 6 Compustat files, as well as to Citibase. This program would also have to incorporate exact periodicity specification and data compacting for Citibase data. Above all, it had to be easy and straightforward to use. The result of this is a macro program named ACCESS, which accomplishes all of the specified criteria. Data extraction is controlled by supplying control parameters to the macro. There are a total of 11 macro control parameters, of which 4 are required regardless of which database is being accessed, and 6 of the 11 are common to both databases. The following is a list of the macro's control parameters: 116

2 DB specifies the database, eith r CITIBASE or COMPUSTAT TYPE designates the data type for Citibase (Q-quarterly, M-monthly, A-annual) or the Compustat file (INA-industrial annual, INO industrial quarterly, RSC-research, OTC-over the counter, etc.) OUTPUT dataset to hold the extracted data SELECT specifies the variables for extraction BEGYR the date/year to start data selection ENDYR the date/year to end data selection SELCRIT specifies a condition on which data will be selected PRT YES/NO toggle, prints the extracted data COMPACT YES/NO toggle, specifies if the data is to be compacted CM specifies the method of data compacting: monthly to annual format by summation, monthly to quarterly format by averaging, quarterly to annual format by summation, quarterly to annual format by selecting the value of the 4th quarter COMDAT A specifies the dataset to hold the compacted data When extracting data for a specific period of time, the user may enter that period as a range by using both the BEGYR and ENDYR parameters together. As a start date to begin data selection only BEGYR would be used. To select data up to a certain point only ENDYR would be used. Not specifying a time period results in all available data being selected. To keep the process of accessing the different databases 'transparent' to the user, as many of the control parameters as possible are made common to accessing both databases. Regardless of which database is being accessed, the DB, TYPE, OUTPUT and SELECT parameters must be specified. The parameters PRT, COMPACT, CM and COMDATA are used only when accessing Citibase and the SELCRIT parameter is used only when accessing Compustat. The macro checks to see if the required control parameters have been supplied; if they haven't been, a message is written to the SASLOG. 117

3 The macro utilizes 'KEYWORD' parameters that have the form KEYWORD=XXX. This allows the various parameters to appear in any order. The parameters may appear on one line or across several lines and are separated by commas; spacing is unimportant. The macro may be invoked as many times as necessary in one program. The macro resides in a file called SASMAC, which also contains other macros. The macro is made available to the user's program by using an Include statement to call the SASMAC file into the user's program, as opposed to using the Autocall facility. This allows for easier maintenance and access if job submission is through CMSBATCH. To increase execution speed and conserve disk space (the 3 files take up 12 megabytes), the Citibase data has been converted to SAS data format. The data is stored in 3 files; monthly, quarterly and annual data. The conversion to SAS data format has the added advantage of storing the variable labels with the data. The files are updated by a maintenance program that is run on the new tape. The program uses PROC CITIBASE to create the individualdatasets and the UPDATE facility to update the permanent disk files with the new data. A test program validates the updates. The six Compustat files currently reside in their original format (real binary), although in the future they may be converted to SAS data format. The reason for not yet doing so is that SAS format and real binary format are similar except for the generational information that SAS stores. Unlike Citibase, the Compustat updates completely replace the old files. The following are examples of using the ACCESS macro. The first example accesses Citibase twice, the first time to extract quarterly data, the second time to extract monthly data. The second example is a sample of extracting data from Compustat. Note that the Include statement to call the SASMAC file is not shown (it must be specified before using the macro). %ACCESS(DB=citibase, TYPE=q, OUTPUT =xqd1, BEGYR=75q1, ENDYR=79q4, SELECT =gnp gyd) %ACCESS(DB=citibase, TYPE=m, OUTPUT =Xmd, SELECT =fm1, BEGYR=jan75, ENDYR=dec79, COMPACT =yes, CM=M2, COMDA TA=xqd2) DATA COMBO; MERGE XQD1 XOD2; BY DATE; PROC REG DATA=COMBO; MODEL FM1 =GNP GYD; 118

4 %ACCESS(DB=compustat, TYPE=inq, OUTPUT =amxdata, SELCRIT=CNUM="025816", SELECT=CONAME YEAR V22-V26 V14 V19) PROC PRINT DATA=AMXDATA; In the Citibase example, the first time the macro is invoked, data for the 1st quarter 1975 through 4th quarter 1979 is selected for the variables GNP and GYD. The second invocation selects monthly data for the period January 1975 through December 1979 for the variable FM1. Since FM1 is only available in monthly format, it is compacted to quarterly format for compatibility with the variables GNP and GYD. The two datasets, XQD1 (GNP,GYD) and XOD2 (FM1) are then merged. In the second example, the Compustat Industrial Quarterly (TYPE=INQ) is accessed for data pertaining to American Express (CNUM="025816") for the 9 specified variables. In the near future, we hope to extend the macro to access our other large databases: International Financial Statistics (IFS), Panel Survey of Income Dynamics (PSI D) and the University of Chicago's Center for Research in Security Prices (CRSP) files. Unfortunately, space constraints will not permit a discussion of the coding techniques used in the Access macro or a listing of the code. For further information, interested parties should contact the Department of Academic Computing. SECTION 2 \ It goes without saying that economics is generally thought of as a difficult and sometimes a rather "dismal" science. Indeed, most students have a negative recollection of their first, which in all likelihood, turns out to be their last economics course taken in college. What have teaching economists done to rectify this situation; that is, have teachers been able to breathe some new life into the dismal science? From a purely pedagogical perspective, even though no new theories have burst upon the scene, the profession has made major advances in promoting existing ideas through the extensive use of computer methodologies. In the areas of data base management as well as statistical programming, and more importantly, their interactions, have helped move the teaching of economics into a new and exciting environment. In the areas of macroeconomics, microeconomics, managerial economics, labor economics, international economics, and the obvious example of econometrics, the interfacing of large complex data bases with canned statistical programs has introduced a fresh teaching approach into these subjects. 119

5 Here at Pace three major data bases have been linked with the SAS statistical programs providing users with several unique opportunities to relate economic theory with economics reality (i.e., see ACCESS MACRO at the beginning of the paper). CITIBASE is an economic data set that collects approximately 5,000 economic time series from to present. In macroeconomics classes these data together with several SAS procedures have been useful in helping student estimate and graph consumption functions, investment functions, and money demand functions (i.e., PROC REG). At the conclusion of the course, these three functions are linked together in a multiplier-accelerator-liquidity preference setup, the equations are estimated, simulations are computed, and the results are graphed (i.e., PROC SYSNLIN, PROC SIMNLIN). Students are constantly reminded of the interplay of the economic theory with data behind these equations, and are accorded the capability of playing their results off against various alternative policies. For examp!e, the models are structured in such a manner as to answer questions relating to differing approaches to fiscal and monetary policy and how they impact on the relevant simulated variables. In short, students can place themselves in the drivers seat with regards to economic policy making and observe the results of various decisions made in these two areas. Pace has access to the longitudinal data base referred to as the Panel Survey of Income Dynamics (PSID). The PSID is a national probability sample of 7,000 heads of households that includes data gathered from 1968-present. In each survey year approximately 300 variables are collected on each household, some of the information is repeated for all 16 years and some is collected only for a specific year. The data have been extremely useful in econometrics classes as well as classes in labor economics. In the labor classes intense theoretical interest centers around the notion of human capital theory. Since the PSID is linked to the SAS programs students again have a unique opportunity to test theory against practice. Here students typically gather data for one year and test the relationships of earnings with schooling, training, race, sex, etc. (i.e., PROC FREO, PROC MEANS, PROC TABULATE, PROC REG). Because of the nature of longitudinal data, the capability exists to test these relationships over an extended time span to determine if, for example, the returns to a college education have shifted over time (an area of particular importance to college students). In either case, at the conclusion of the course students have a hands on feel for the extremely abstract human capital theory. These are just two examples of how the economics department uses the computer methodologies in a classroom environment. It is clear that the Econometrics courses use a wide variety of statistical programs with these data bases including PROC FACTOR, PROC FORECAST, and PROC ARIMA, in addition to the ones previously described. However, space does not permit us to explore these possibilities. Admittedly, most of the SAS applications discussed here are in the areas of "number crunching", but with our recent acquisition of SAS GRAPH the department looks forward to exploring new horizons in this critical area. 120

Top 10 Things to Know about WRDS

Top 10 Things to Know about WRDS Top 10 Things to Know about WRDS 1. Do I need special software to use WRDS? WRDS was built to allow users to use standard and popular software. There is no WRDSspecific software to install. For example,

More information

How to Become a CMA (Certified Management Accountant) May 10, 2017

How to Become a CMA (Certified Management Accountant) May 10, 2017 How to Become a CMA (Certified Management Accountant) May 10, 2017 Today s Moderator Featured Presenter Agenda The CMA Designation Institute of Management Accountants (IMA) Why get a CMA? CMA Requirements

More information

Guidelines for a flexible and resilient statistical system: the architecture of the new Portuguese BOP/IIP system

Guidelines for a flexible and resilient statistical system: the architecture of the new Portuguese BOP/IIP system Guidelines for a flexible and resilient statistical system: the architecture of the new Portuguese BOP/IIP system Marques, Carla Banco de Portugal1, Statistics Department Av. D. João II, Lote 1.12.02 Lisbon

More information

Article II - Standards Section V - Continuing Education Requirements

Article II - Standards Section V - Continuing Education Requirements Article II - Standards Section V - Continuing Education Requirements 2.5.1 CONTINUING PROFESSIONAL EDUCATION Internal auditors are responsible for maintaining their knowledge and skills. They should update

More information

ANNUAL PROGRAM REPORT. Multiple and Single Subject Credential Programs. Credential programs are not subject to 5 year reviews

ANNUAL PROGRAM REPORT. Multiple and Single Subject Credential Programs. Credential programs are not subject to 5 year reviews ACADEMIC SENATE Committee on Academic Planning and Review ANNUAL PROGRAM REPORT College Department Program CEAS Teacher Education Multiple and Single Subject Credential Programs Reporting for Academic

More information

Acknowledgement: BYU-Idaho Economics Department Faculty (Principal authors: Rick Hirschi, Ryan Johnson, Allan Walburger and David Barrus)

Acknowledgement: BYU-Idaho Economics Department Faculty (Principal authors: Rick Hirschi, Ryan Johnson, Allan Walburger and David Barrus) Math Review Acknowledgement: BYU-Idaho Economics Department Faculty (Principal authors: Rick Hirschi, Ryan Johnson, Allan Walburger and David Barrus) Section 1 - Graphing Data Graphs It is said that a

More information

Economic Outlook. William Strauss Senior Economist and Economic Advisor Federal Reserve Bank of Chicago

Economic Outlook. William Strauss Senior Economist and Economic Advisor Federal Reserve Bank of Chicago Economic Outlook Midwest Association of Rail Shippers Lombard, IL January 13, 216 William Strauss Senior Economist and Economic Advisor Federal Reserve Bank of Chicago The Great Recession ended in June

More information

ECO ECONOMICS DEPARTMENT CURRICULUM MAP Page 1

ECO ECONOMICS DEPARTMENT CURRICULUM MAP Page 1 ECO ECONOMICS DEPARTMENT CURRICULUM MAP Page LO a: Understand and apply the basic principles of micro and ECO05 ECO0 ECO ECO22 ECO222 ECO300 ECO 30 ECO305 ECO30 ECO307 ECO 3 ECO32 ECO33 ECO 325 ECO32 macroeconomics

More information

PROGRAMMING ROLLING REGRESSIONS IN SAS MICHAEL D. BOLDIN, UNIVERSITY OF PENNSYLVANIA, PHILADELPHIA, PA

PROGRAMMING ROLLING REGRESSIONS IN SAS MICHAEL D. BOLDIN, UNIVERSITY OF PENNSYLVANIA, PHILADELPHIA, PA PROGRAMMING ROLLING REGRESSIONS IN SAS MICHAEL D. BOLDIN, UNIVERSITY OF PENNSYLVANIA, PHILADELPHIA, PA ABSTRACT SAS does not have an option for PROC REG (or any of its other equation estimation procedures)

More information

CHAPTER 4. About TMS and the SAN

CHAPTER 4. About TMS and the SAN CHAPTER 4 About TMS and the SAN Recently, during assistance visits to the field, it came to our attention that there is confusion between the Security Assistance Network (SAN) and the Training Management

More information

Characteristics of Students in the Cisco Networking Academy: Attributes, Abilities, and Aspirations

Characteristics of Students in the Cisco Networking Academy: Attributes, Abilities, and Aspirations Cisco Networking Academy Evaluation Project White Paper WP 05-02 October 2005 Characteristics of Students in the Cisco Networking Academy: Attributes, Abilities, and Aspirations Alan Dennis Semiral Oncu

More information

Notes for Student Version of Soritec

Notes for Student Version of Soritec Notes for Student Version of Soritec Department of Economics January 20, 2001 INSTRUCTIONS FOR USING SORITEC This is a brief introduction to the use of the student version of the Soritec statistical/econometric

More information

MAIL DIVERSION. This paper focuses primarily on the forecasted impact of technology on postal volumes

MAIL DIVERSION. This paper focuses primarily on the forecasted impact of technology on postal volumes MAIL DIVERSION Mail volumes are under attack from a number of sources: technological diversion, the economy, competition, regulatory changes, business consolidation and other factors. This paper focuses

More information

Economic Update Birmingham Bloomfield Chamber Breakfast

Economic Update Birmingham Bloomfield Chamber Breakfast Economic Update Birmingham Bloomfield Chamber Breakfast Federal Reserve Bank of Chicago February 2, 2016 Paul Traub Senior Business Economist Overview U.S. Economy (C + I + G + Nx) U.S. Consumer Monetary

More information

Economic Update German American Chamber of Commerce

Economic Update German American Chamber of Commerce Economic Update German American Chamber of Commerce Federal Reserve Bank of Chicago October 6, 2015 Paul Traub Senior Business Economist U.S. Real GDP Billions Chained $2009, % Change Q/Q at SAAR $ Billions

More information

Announcement date: December 1, 2009 New program launch date: May 1, 2010

Announcement date: December 1, 2009 New program launch date: May 1, 2010 Overview New Certified Management Accountant (CMA ) Certification Program Announcement date: December 1, 2009 New program launch date: May 1, 2010 Why did ICMA decide to update the curriculum and change

More information

Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH

Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH Paper 118 Data Warehousing on a Shoestring Rick Nicola, SPS Software Services Inc., Canton, OH Abstract: Perhaps the largest stumbling block in developing a data warehouse using SAS (or any other) products

More information

Macros I Use Every Day (And You Can, Too!)

Macros I Use Every Day (And You Can, Too!) Paper 2500-2018 Macros I Use Every Day (And You Can, Too!) Joe DeShon ABSTRACT SAS macros are a powerful tool which can be used in all stages of SAS program development. Like most programmers, I have collected

More information

NRS Data Flow and Planning Workbook

NRS Data Flow and Planning Workbook NRS Data Flow and Planning Workbook Department of Education, Office of Career, Technical and Adult Education, Contract No. ED-VAE-15-0-5027 September 2018 Contents Introduction... 1 Overview of the Workbook

More information

NRS STATE DATA QUALITY CHECKLIST

NRS STATE DATA QUALITY CHECKLIST A Project of the U.S. Department of Education NRS STATE DATA QUALITY CHECKLIST State: Date: Completed by (name and title): A. Data Foundation and Structure Acceptable Quality 1. State has written assessment

More information

ACTUARIAL STUDIES AND DEMOGRAPHY

ACTUARIAL STUDIES AND DEMOGRAPHY ACTUARIAL STUDIES AND DEMOGRAPHY Research Paper Series A Survey of Macquarie University Students Home Computers Jim Farmer Research Paper No. 003/98 ISBN No. 1 86408 446 4 August 1998 jfarmer@efs.mq.edu.au

More information

Longitudinal Employer - Household Dynamics. Internal document No. IP-LEHD-BRB LEHD Business Register Bridge Technical documentation

Longitudinal Employer - Household Dynamics. Internal document No. IP-LEHD-BRB LEHD Business Register Bridge Technical documentation Longitudinal Employer - Household Dynamics Internal document No. IP-LEHD-BRB-1.1.10 LEHD Business Register Bridge Technical documentation Code version : 1.1.10 Author : Hyowook Chiang, Kristin Sandusky,

More information

ENGINEERING AND TECHNOLOGY MANAGEMENT

ENGINEERING AND TECHNOLOGY MANAGEMENT Engineering and Technology Management 1 ENGINEERING AND TECHNOLOGY MANAGEMENT Master of Science in Engineering Technology Management Tim Hardin, PhD Director Brenda L. Johnson, MS Assistant Director OSU

More information

Economic Update. Automotive Insights Conference. Paul Traub. Federal Reserve Bank of Chicago January 18, Senior Business Economist

Economic Update. Automotive Insights Conference. Paul Traub. Federal Reserve Bank of Chicago January 18, Senior Business Economist Economic Update Automotive Insights Conference Federal Reserve Bank of Chicago January 18, 2018 Paul Traub Senior Business Economist Main Economic Indicators Year-over-year Comparison 2015 2016 2017 GDP

More information

Substitute Bulletin WELCOME BACK ONLINE SUBSTITUTE PAGE

Substitute Bulletin WELCOME BACK ONLINE SUBSTITUTE PAGE August 2016 Volume 1, Issue 1 Substitute Bulletin WELCOME BACK We are excited to welcome each of you back for the 2016-2017 school year!! This is the first issue of the newsletter that will be published

More information

THE NEW EDGE IN TECHNOLOGY GREAT CUSTOMER SERVICE August 9, Matt Wilbanks Cloud Specialist

THE NEW EDGE IN TECHNOLOGY GREAT CUSTOMER SERVICE August 9, Matt Wilbanks Cloud Specialist THE NEW EDGE IN TECHNOLOGY GREAT CUSTOMER SERVICE August 9, 2011 Matt Wilbanks Cloud Specialist Safe Harbor Statement This presentation contains forward-looking statements that involve risks, uncertainties

More information

MSc Econometrics. VU Amsterdam School of Business and Economics. Academic year

MSc Econometrics. VU Amsterdam School of Business and Economics. Academic year MSc Econometrics VU Amsterdam School of Business and Economics Academic year 2018 2019 MSc Econometrics @ SBE VU Amsterdam prof. dr. Siem Jan Koopman (s.j.koopman@vu.nl) 2 of 27 MSc Econometrics @ SBE

More information

Introduction to Social Explorer

Introduction to Social Explorer Introduction to Social Explorer Janine Billadello, Geospatial Data Lab, Baruch College October 1, 2015 Abstract This tutorial will introduce you to Social Explorer, an online mapping interface that allows

More information

Software Development 2

Software Development 2 Software Development 2 Course Map This module introduces some of the techniques programmers use to create applications and programs. Introduction Computer Principles and Components Software Development

More information

EXPERIENCES WITH VIRTUALIZATION TECHNOLOGY IN EDUCATION

EXPERIENCES WITH VIRTUALIZATION TECHNOLOGY IN EDUCATION EXPERIENCES WITH VIRTUALIZATION TECHNOLOGY IN EDUCATION Timothy Bower Kansas State University at Salina 785-826-2920 tim@ksu.edu ABSTRACT This paper describes how virtualization technology was used to

More information

COMPUSTAT Additional Files

COMPUSTAT Additional Files COMPUSTAT Additional Files 10 COMPUSTAT Additional Files i Business Descriptions File 1 Economic & Industry Sector File 1 Value/Growth File 1 Trends & Projections 1 Index Fundamentals File 1 File Structure

More information

EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT)

EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT) EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT) DESCRIPTION: This example shows how to combine the data on respondents from the first two waves of Understanding Society into

More information

Continuous Professional Development (CPD) Manual

Continuous Professional Development (CPD) Manual Continuous Professional Development (CPD) Manual 2017 Version 2.1 TABLE OF CONTENTS Definitions... 2 Continuous Professional Development (CPD)... 3 SCA s commitment to the highest global professional standards...

More information

Google Inc net consolidated revenues: 27.2 billion euro

Google Inc net consolidated revenues: 27.2 billion euro 5.1. Google Presentation Google Inc. 2011 net consolidated revenues: 27.2 billion euro Advertising Google Websites 77% of net sales Fiscal year ended December 31, 2011 Advertising Network Members Websites

More information

CPE Renewal Handbook. ACCE Recognized. Program. CESB Accredited. Program. Revised August CPE Renewal Handbook (Rev.

CPE Renewal Handbook. ACCE Recognized. Program. CESB Accredited. Program. Revised August CPE Renewal Handbook (Rev. CPE Renewal Handbook ACCE Recognized Program CESB Accredited Program Revised August 2018 CPE Renewal Handbook (Rev. 08/2018) 1 American Society of Professional Estimators Core Purpose ASPE is the construction

More information

Improving Internet Connectivity in Rural West Virginia

Improving Internet Connectivity in Rural West Virginia Team Four-year Transforms 2/16/2017 SYST 699 Spring 2017 Improving Internet Connectivity in Rural West Virginia Contents Contents 1 Introduction 2 Background Information 2 Existing Services and Coverage

More information

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word.

WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Web Writing 101 WHY EFFECTIVE WEB WRITING MATTERS Web users read differently on the web. They rarely read entire pages, word for word. Instead, users: Scan pages Pick out key words and phrases Read in

More information

PROC DATASOURCE - STRATEGIES FOR USER SUPPORT

PROC DATASOURCE - STRATEGIES FOR USER SUPPORT PROC DATASOURCE - STRATEGIES FOR USER SUPPORT Sharon I. O'Donnell Department of Economics/Center for Academic Computing The Pennsylvania State University ABSTRACT Researchers using business databases such

More information

Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports...

Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports... User Guide Contents D&B Business Browser versus D&B Hoovers... 3 Search for a Target Company... 3 Researching a Target Company... 3 Available Company Reports... 4 Building a Target List of Companies...

More information

California Core Performance Overview

California Core Performance Overview California Core Performance Overview 1. Generate a list of learners to follow-up using the TOPSpro Enterprise California Core Performance Wizard. a. In TE, go to Tools and click California Core Performance

More information

Unit title: IT in Business: Advanced Databases (SCQF level 8)

Unit title: IT in Business: Advanced Databases (SCQF level 8) Higher National Unit Specification General information Unit code: F848 35 Superclass: CD Publication date: January 2017 Source: Scottish Qualifications Authority Version: 02 Unit purpose This unit is designed

More information

Improving Performance and Ensuring Scalability of Large SAS Applications and Database Extracts

Improving Performance and Ensuring Scalability of Large SAS Applications and Database Extracts Improving Performance and Ensuring Scalability of Large SAS Applications and Database Extracts Michael Beckerle, ChiefTechnology Officer, Torrent Systems, Inc., Cambridge, MA ABSTRACT Many organizations

More information

LIBNAME CCC "H:\Papers\TradeCycle _replication"; /*This is the folder where I put all the three data sets.*/ RUN;

LIBNAME CCC H:\Papers\TradeCycle _replication; /*This is the folder where I put all the three data sets.*/ RUN; /*************************************************** The code for "The Cash Conversion Cycle Spread" paper To prepare: First, uncompress the three zipped files (downloaded from WRDS) into a folder. On

More information

WEB SITE FUNCTIONAL SPECIFICATION FOR A FICTION EXECUTIVE EDUCTIONAL INSTITUTE

WEB SITE FUNCTIONAL SPECIFICATION FOR A FICTION EXECUTIVE EDUCTIONAL INSTITUTE WEB SITE FUNCTIONAL SPECIFICATION FOR A FICTION EXECUTIVE EDUCTIONAL INSTITUTE Martin Meister Boston University October 15, 2011 1 Table of Contents Project Overview... 3 Institution Information... 3 Goals

More information

CMA. Certified Management Accountant

CMA. Certified Management Accountant CMA Certified Management Accountant ABOUT CMA PROGRAM Whether you are a fresh graduate or someone working in the finance and accounting role with an ambition to have a highly rewarding career - CMA is

More information

MarketLine Advantage

MarketLine Advantage MarketLine Advantage User s Guide Welcome to MarketLine Advantage. This user guide will show you everything you need to know to access and utilize the wealth of information available from MarketLine Advantage.

More information

EE432 Advanced Digital Design with HDL Term Project

EE432 Advanced Digital Design with HDL Term Project EE432 Advanced Digital Design with HDL Term Project Spring 2013 Instructor Tom Almy I (the instructor) am always looking for ways to make the courses interesting, exciting, and educational. I've found

More information

Ministry of Higher Education and Scientific research

Ministry of Higher Education and Scientific research Department of IT Technical Institute of Amedi Duhok Polytechnic University Subject: Database System Course Book: Year 2 (Second year) Lecturer's name: Dipl.Eng.Shorash A. Sami Academic Year: 2018/2019

More information

Mergent Horizon. A User s Guide

Mergent Horizon. A User s Guide Mergent Horizon A User s Guide Welcome to Mergent Horizon. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mergent Horizon. This

More information

U.S. TV and Internet Providers: Competing services for mobile consumers TV time. Market Study Second Quarter 2017

U.S. TV and Internet Providers: Competing services for mobile consumers TV time. Market Study Second Quarter 2017 U.S. TV and Internet Providers: Competing services for mobile consumers TV time Market Study Second Quarter 2017 U.S. TV and Internet Providers: Competing services for mobile consumers TV time Market Study

More information

Economics: Principles in Action 2005 Correlated to: Indiana Family and Consumer Sciences Education, Consumer Economics (High School, Grades 9-12)

Economics: Principles in Action 2005 Correlated to: Indiana Family and Consumer Sciences Education, Consumer Economics (High School, Grades 9-12) Indiana Family and Consumer Sciences Education, Consumer Economics Consumer Economics 1.0 PROCESSES: Explain, demonstrate, and integrate processes of thinking, communication, leadership, and management

More information

1 The Permanent Income Hypothesis

1 The Permanent Income Hypothesis The Permanent Income Hypothesis. A two-period model Consider a two-period model where households choose consumption ( 2 ) to solve + 2 max log + log 2 { 2 } µ + + where isthediscountfactor, theinterestrate.

More information

Asset Keeper Pro. Features Listing

Asset Keeper Pro. Features Listing Overview Asset Keeper Pro is a cross-platform (Windows and Mac) full-featured desktop fixed asset, depreciation, software application. Asset Keeper Pro is 100% tax compliant with all current Federal regulations.

More information

Mathematical Focus 1 Exponential functions adhere to distinct properties, including those that limit the values of what the base can be.

Mathematical Focus 1 Exponential functions adhere to distinct properties, including those that limit the values of what the base can be. Situation: Restrictions on Exponential Functions Prepared at the University of Georgia in Dr. Wilson s EMAT 500 Class July 5, 013 Sarah Major Prompt: A teacher prompts her students to turn in their homework

More information

How to Select the Right Marketing Cloud Edition

How to Select the Right Marketing Cloud Edition How to Select the Right Marketing Cloud Edition Email Studio, Mobile Studio, and Web Studio ith Salesforce Marketing Cloud, marketers have one platform to manage 1-to-1 customer journeys through the entire

More information

The CMA Program: The Essential Credential

The CMA Program: The Essential Credential The CMA Program: The Essential Credential Institute of Management Accountants (IMA ) Presented by Olen L. Greer, Ph.D., CMA Regional V/P and Global Board Member, IMA AGENDA Perspective on Careers in Management

More information

Relay For Life Fundraising

Relay For Life Fundraising Relay For Life Fundraising The Art and Science of Asking for Donations Relay For Life Online Committee Table of Contents TABLE OF CONTENTS... 2 INTRODUCTION... 3 THE ART OR HUMAN SIDE OF ASKING... 4 THERE

More information

ContinuingProfessionalEducation(CPE)Guide

ContinuingProfessionalEducation(CPE)Guide ContinuingProfessionalEducation(CPE)Guide CPCM CFCM CCCM Program Year 2017 2018 Table of Contents Page 2 INTRODUCTION....3 THREE CATEGORIES OF CPE.....3 EXPIRATION OF CPE..3 CPE PROGRAMS AND TOPIC/SUBJECT

More information

Mergent WebReports. A User s Guide. Introduction

Mergent WebReports. A User s Guide. Introduction Mergent WebReports A User s Guide Welcome to Mergent WebReports. This user guide will show you everything you need to know to access and utilize the wealth of information available from Mergent WebReports.

More information

The Cisco Networking Academy at ECC Information Packet

The Cisco Networking Academy at ECC Information Packet The Cisco Networking Academy at ECC Information Packet January 1, 2017 This information packet was created as a guide for individuals interested in learning more about computers and computer networking,

More information

Atlanta Urban Debate League E-Debate Teaching Project

Atlanta Urban Debate League E-Debate Teaching Project Atlanta Urban Debate League E-Debate Teaching Project Atlanta Urban Debate League... 1 Invitation to Participate... 2 School and Coach Expectations... 4 Technology Needs... 5 Downloading Skype... 6 Installing

More information

MC Color. New Product Guide

MC Color. New Product Guide MC Color New Product Guide 06.11.2009 New Product Guide MC Color Product Name Positioning Statement Product Summary Unique Selling Points MC Color MC Color is the most attractively designed, competitively

More information

Educational Lincoln-Sudbury Regional High School

Educational Lincoln-Sudbury Regional High School Educational Technology @ Lincoln-Sudbury Regional High School March 2013 1 N. Errico Educational Technology Coordinator/ Instructional Technology Specialist 1 What do these people have in common? 2 2 What

More information

and compare electrical costs of computers in various modes. Cost of Computers

and compare electrical costs of computers in various modes. Cost of Computers Summary: Students calculate and compare electrical costs of computers in various modes. Cost of Computers Grade Level: 5-8 Subject Areas: English (Media and Technology, Research and Inquiry), Mathematics,

More information

SYLLABUS. Departmental Syllabus. Structured Query Language (SQL)

SYLLABUS. Departmental Syllabus. Structured Query Language (SQL) SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0901 SEMESTER: COURSE TITLE: COURSE NUMBER: Structured Query Language (SQL) CIST0151 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE:

More information

August Objectives. Agenda. Promoting Your Professional Development with ACMPE. Describe the foundation and value of certification and fellowship

August Objectives. Agenda. Promoting Your Professional Development with ACMPE. Describe the foundation and value of certification and fellowship Promoting Your Professional Development with ACMPE 2015 MGMA-Louisiana Annual Conference August 19-21, 2015 Objectives Describe the foundation and value of certification and fellowship Explain the steps

More information

Illinois Broadband Opportunity Partnership (IBOP) Monthly Summary. January 2014

Illinois Broadband Opportunity Partnership (IBOP) Monthly Summary. January 2014 Illinois Broadband Opportunity Partnership (IBOP) Monthly Summary January 2014 Summary of all IBOP Projects January 2014 Projects complete: 9 of 11 Miles of Conduit Buried: 2,396 (Target was 2,288) Miles

More information

EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT)

EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT) EXAMPLE 3: MATCHING DATA FROM RESPONDENTS AT 2 OR MORE WAVES (LONG FORMAT) DESCRIPTION: This example shows how to combine the data on respondents from the first two waves of Understanding Society into

More information

Migration to Service Oriented Architecture Using Web Services Whitepaper

Migration to Service Oriented Architecture Using Web Services Whitepaper WHITE PAPER Migration to Service Oriented Architecture Using Web Services Whitepaper Copyright 2004-2006, HCL Technologies Limited All Rights Reserved. cross platform GUI for web services Table of Contents

More information

IT Town Hall Meeting

IT Town Hall Meeting IT Town Hall Meeting Scott F. Midkiff Vice President for Information Technology and CIO Professor of Electrical and Computer Engineering Virginia Tech midkiff@vt.edu October 20, 2015 10/20/2015 IT Town

More information

Administrator Guide. November 2010

Administrator Guide. November 2010 Administrator Guide November 2010 AppShore Inc. Administrator Guide Table of Contents Overview...2 Logging into AppShore...2 How to upgrade a subscription...3 How to close your AppShore account...4 Roles...5

More information

DESIGN PLUMBING. CPD Recertification Log. An International Program for the Certification of Plumbing Design Professionals.

DESIGN PLUMBING. CPD Recertification Log. An International Program for the Certification of Plumbing Design Professionals. certified in PLUMBING DESIGN AMERICAN SOCIETY OF PLUMBING ENGINEERS CPD Recertification Log An International Program for the Certification of Plumbing Design Professionals 600 Shafer Court, Suite 0 Rosemont,

More information

CPA Exam and Licensure Information and FAQs

CPA Exam and Licensure Information and FAQs CPA Exam and Licensure Information and FAQs 1 CPA Exam and Licensure Information and FAQs July 2016 Dr. Gary Colbert, Director of Accounting Programs, University of Colorado Denver 1 Education and experience

More information

Strategic Plan for years Updated - 8/9/14 Review & re-approved

Strategic Plan for years Updated - 8/9/14 Review & re-approved The Mid-Florida Chapter of APICS will continue to utilize a Continuous Improvement concept, along with the C-BAR as tools to better manage the chapter. Vision: Mission: Mid-Florida Chapter of APICS will

More information

Q: Do I have to enter data already collected in the Banner system? Q: What information will be made public or shared with other data bases?

Q: Do I have to enter data already collected in the Banner system? Q: What information will be made public or shared with other data bases? FREQUENTLY ASKED QUESTIONS Q: Is DMS an online evaluation tool? Q. Who do I contact for help? Q: How much time will data entry require? Q: Who will enter my activities into the system? Q: How accurate

More information

Colorado Charter School Institute. Website Design & Development Request for Proposal

Colorado Charter School Institute. Website Design & Development Request for Proposal Colorado Charter School Institute Website Design & Development Request for Proposal This RFP is for the design and implementation of a new website for the Colorado Charter School Institute. Schedule of

More information

National Board Certification. Updated April 2017

National Board Certification. Updated April 2017 National Board Certification Updated April 2017 2 What is the same? Our Mission Maintaining high and rigorous standards for what accomplished teachers should know and be able to do; Providing a national

More information

2016 BOMI International. Revised: June C A N A D A WELCOME TO OUR: CERTIFICATE PROGRAMS

2016 BOMI International. Revised: June C A N A D A WELCOME TO OUR: CERTIFICATE PROGRAMS Revised: June 2016 www.bomicanada.com 1.888.821.9319 C A N A D A WELCOME TO OUR: CERTIFICATE PROGRAMS >> C A N A D A 55 York Street, Suite 1201 Toronto, ON M5J1R7 Phone 1.888.821.9319 www.bomicanada.com

More information

INTRODUCTION TO ECONOGRAPHICATION

INTRODUCTION TO ECONOGRAPHICATION INTRODUCTION TO ECONOGRAPHICATION Mario Arturo Ruiz Estrada * University of Malaya The International Institute of Public Policy and Management (INPUMA) Block C, Level 3, UM City Campus, Jalan Tun Ismail

More information

National Board Certification. Updated August 2018

National Board Certification. Updated August 2018 National Board Certification Updated August 2018 Our Mission Maintaining high and rigorous standards for what accomplished teachers should know and be able to do; Providing a national voluntary system

More information

Houston Economic Outlook. Prepared by Patrick Jankowski SVP Research

Houston Economic Outlook. Prepared by Patrick Jankowski SVP Research Houston Economic Outlook Prepared by Patrick Jankowski SVP Research Longest U.S. Expansions Tech Boom '91 - '01 120 Current Boom June '09 to Present 114 60s Boom '61 - '69 Reagan Years '82 - '90 92 106

More information

ECONOMICS (ECON) ECON 199 Independent Study

ECONOMICS (ECON) ECON 199 Independent Study Economics (ECON) 1 ECONOMICS (ECON) ECON 100 Introductory Economics A one semester survey of current national and international economic problems. Useful as preparation for Econ 103 and 104. Not required

More information

Southway Housing Trust Digital Access Strategy

Southway Housing Trust Digital Access Strategy Our Commitment Southway Housing Trust Digital Access Strategy 2016-2020 Southway is committed to bridging the Digital Divide in South Manchester. We recognise that Digital Access and Channel Shift are

More information

Audio Book Recording Manual - PC

Audio Book Recording Manual - PC BHUMI Audio Book Recording Manual - PC The purpose of this manual is to provide a step by step procedure on how to record textbooks for visually impaired students. [v1.5 11 Jan 2018] For clarifications

More information

Deft User Guide <Virtual Environment> 6.0

Deft User Guide <Virtual Environment> 6.0 Deft User Guide 6.0 Page 1 of 32 Contents 1. Introduction... 3 2. Components of the Deft System... 5 2.1. ModelIT... 6 2.2. CostPlan... 8 2.3. ApacheSim... 9 2.4. Deft... 9 2.4.1.

More information

Accessibility for ExploreLearning Gizmos

Accessibility for ExploreLearning Gizmos December 10, 2003 Accessibility for ExploreLearning Gizmos Raman Pfaff, ExploreLearning The power of the Web is in its universality. Access by everyone regardless of disability is an essential aspect.

More information

Mathematics Scope & Sequence Grade 7 Revised: June 3, 2016 First Six Weeks (24 Days)

Mathematics Scope & Sequence Grade 7 Revised: June 3, 2016 First Six Weeks (24 Days) Mathematics Scope & Sequence 2016-2017 Grade 7 Revised: June 3, 2016 First Six Weeks (24 ) 7.3B apply and extend previous understandings of operations to solve problems using addition, subtraction, multiplication,

More information

Application of a Visual Computer Simulator into Collaborative Learning

Application of a Visual Computer Simulator into Collaborative Learning Journal of Computing and Information Technology - CIT 14, 2006, 4, 267 273 doi:10.2498/cit.2006.04.01 267 Application of a Visual Computer Simulator into Collaborative Learning Yoshiro Imai 1, Keiichi

More information

Linear Modeling Elementary Education 4

Linear Modeling Elementary Education 4 Linear Modeling Elementary Education 4 Mathematical modeling is simply the act of building a model (usually in the form of graphs) which provides a picture of a numerical situation. Linear Modeling is

More information

PeerApp Case Study. November University of California, Santa Barbara, Boosts Internet Video Quality and Reduces Bandwidth Costs

PeerApp Case Study. November University of California, Santa Barbara, Boosts Internet Video Quality and Reduces Bandwidth Costs PeerApp Case Study University of California, Santa Barbara, Boosts Internet Video Quality and Reduces Bandwidth Costs November 2010 Copyright 2010-2011 PeerApp Ltd. All rights reserved 1 Executive Summary

More information

Appendix: Data Availability Policies & Replication Policies Time of Evaluation: January 2012

Appendix: Data Availability Policies & Replication Policies Time of Evaluation: January 2012 Appendix: Data Availability Policies & Replication Policies Time of Evaluation: January 2012 Table of Contents: Data Availability Policies:... 2 1) American Economic Review:... 2 2) Journal of Political

More information

User Guide. Chapter 23. Saf User Guide

User Guide. Chapter 23. Saf User Guide User Guide Chapter 23 SafeMail User Guide Table of Contents About SafeMail... 4 About this Guide... 4 Who Should Use this Guide... 4 Accessing your Website... 4 I. Accessing SafeMail... 5 II. Reading Email

More information

Advisor Workstation Quick Start Guide

Advisor Workstation Quick Start Guide SM Morningstar Advisor Workstation Morningstar Advisor Workstation provides financial advisors with tools for investment planning, portfolio analysis, security research, and sales presentations. This is

More information

Six Weeks:

Six Weeks: HPISD Grade 7 7/8 Math The student uses mathematical processes to: acquire and demonstrate mathematical understanding Mathematical Process Standards Apply mathematics to problems arising in everyday life,

More information

ELIZABETH CITY STATE UNIVERSITY Web Page Policy

ELIZABETH CITY STATE UNIVERSITY Web Page Policy Adopted: 06/14/05 ELIZABETH CITY STATE UNIVERSITY Web Page Policy 1. Purpose of Policy The World Wide Web allows Elizabeth City State University staff, faculty, and students to promote university educational

More information

COMPUTER GRAPHICS TECHNOLOGY

COMPUTER GRAPHICS TECHNOLOGY Credentials COMPUTER GRAPHICS TECHNOLOGY Foundation skills Certificate 16 cr. 3D and Video Graphics Certificate Graphic Arts Certificate Web and Interactive Media Certificate 3D and Video Graphics AAS

More information

Mathematics Scope & Sequence Grade 7 Revised: June 2015

Mathematics Scope & Sequence Grade 7 Revised: June 2015 Rational Numbers Mathematics Scope & Sequence 2015-16 Grade 7 Revised: June 2015 First Six Weeks (29 ) 7.3B apply and extend previous understandings of operations to solve problems using addition, subtraction,

More information

Internet Resource Guide: Penn State Undergraduate Mechanical Engineers

Internet Resource Guide: Penn State Undergraduate Mechanical Engineers Internet Resource Guide: Penn State Undergraduate Mechanical Engineers Matt Murphy February 12, 2015 English 202C Technical Communications Table of Contents 1.0 Front Matter 1.1. Contents of Guide 2 1.2.

More information

TOM-TOM THE LHS TO SCHOOL IS BACK. Upgrades. IN THIS ISSUE... pg 1. in Hard Times. pg 2. pg 3. Upgrades in Hard Times. Upgrades in Hard times

TOM-TOM THE LHS TO SCHOOL IS BACK. Upgrades. IN THIS ISSUE... pg 1. in Hard Times. pg 2. pg 3. Upgrades in Hard Times. Upgrades in Hard times THE LHS Lemont High School 800 Porter Street Lemont, IL 60439 IS BACK TOM-TOM TO SCHOOL By Dylan Blaha News Editor Lemont High School Superintendent Sandra Doebert Upgrades in Hard Times In the wake of

More information

CTE Program Proposal. NAME OF COLLEGE: Bakersfield College. FACULTY CONTACT: Creighton Magers DATE: 11/19/2015

CTE Program Proposal. NAME OF COLLEGE: Bakersfield College. FACULTY CONTACT: Creighton Magers DATE: 11/19/2015 CTE Program Proposal NAME OF COLLEGE: Bakersfield College FACULTY CONTACT: Creighton Magers DATE: 11/19/2015 PROGRAM NAME: CompTIA Certificate of Achievement New Program Proposal Program Revision Proposal

More information