Dec 28, 1997 ... by John Walkenbach. From: http://pcworld.com/software/spreadsheet/articles/
dec97/1512p386.html. I've heard you can create a Gantt chart ...
help students learn statistics at their fingertips practice theoretical concepts with data familiarize students with statistical software. Main idea: a simulated data set ...
Excel. Microsoft®. ®. Michael Alexander. & John Walkenbach ... Microsoft and
Excel are registered trademarks of Microsoft Corporation in the United.
Importing Excel data into Stata. Open the data you want to import in Excel and
select: File – Save As… When the Dialog opens select CSV as the type and Save
.
To create reports using BusinessObjects' WebIntelligence and ... Documents
USNH WebIntelligence Help .... Business Objects documents cannot be edited.
Decision Support System. CREATING PIVOT TABLE REPORTS. How do I
rearrange the format of the detail report so that subtests show as column
headings ...
Fill in Columns for Time (sec.) A. Enter in the initial time (in this example 0.0 sec.)
in the first cell in the time column. B. Fill in the time column using Equation 1.
Spreadsheet Concepts: Creating Charts in Microsoft Excel lab. 6. 125. Objectives
: ... Comfortable editing an Excel worksheet or another electronic spreadsheet ...
Introduction to Microsoft Excel 2003. A sample workbook referred to in ... A bold
font is used to indicate named keys on the keyboard, for example,. Esc and Enter
...
tutorial with the exception of keyboard shortcuts will work in Excel for Mac. 1)
Introductory Excel: Entering Formulas. In Excel, formulas allow a user to make
new ...
Feb 20, 2014 ... XlsxWriter is a Python module for creating Excel XLSX files. XlsxWriter is a ....
Tutorial 1: Create a simple XLSX file is a good place to start. 2.3.
Automated Data Analysis Using Excel. Brian D. Bissett. Pfizer Global Research and Development. Groton, CT, USA. Chapman & Hall/CRC. Taylor & Francis ...
Using the Excel Template to create text files for submission via the. Automated
Data ... document with a name such as “2012-13 READ Master”. This is the ...
publish reliable data and information, but the author and the publisher cannot assume ..... 4.10 Creating a Polynomial Regression Tool Using the VBA Analysis ...
template is a file which can be used to store standard drawing features such as ...
A new project is set up through the New Drawing: Project Based window.
Aug 11, 2000 - The Stata Technical Bulletin (STB) and the contents of the supporting files (programs, .... Christopher F. Baum, Boston College, [email protected].
Creating a Simple Chart in Excel. Lesson Plan. 1. Goals: The learner will gain an
understanding of basic editing of an Excel chart. enter data and create a chart.
We present a written tutorial for creating quality control charts using Excel. .... charts from scratch, using Microsoft Excel or another similar spreadsheet program. ... and manipulate cells, format how cells display, use absolute references, etc.
Apr 18, 2002 - Creating plots and tables of estimation results using parmest and friends .... is a Stata do-file, which reconstructs these attributes when called, if .... listtex Output variables to a file to be inserted into a general TEX or HTML ta
Apr 18, 2002 - Frame 3. The parmest package: parmest and parmby. ⢠My first response to this ... names, labels, estimates, confidence limits and P-values.
Aug 11, 2000 - 17. cs5 float %8.4f. Spline at 4,070. 18. cs6 float %8.4f. Spline at 4,840 ...... For purposes of illustration, we use an example with only two independent ...... programming tutorials, illustrations of data analysis techniques, discus
Aug 11, 2000 - See www.stata.com/bookstore/stbj.html for details. Submissions to the STB, including submissions to the supporting files (programs, datasets, ...
Excel 2007: The Data Analysis add-in should appear at right-end of Data menu
as Data ... Click the Microsoft Office Button, and then click Excel Options. 2.
Now, you can close Excel and go to ArcCatalog to build the connection. 1. In
ArcCatalog, open the Database Connections folder and double-click the “Add.
CREATING AUTOMATED. REPORTS IN EXCEL. STATA FOR PRACTITIONERS:
... import excel "Satisfaction data Nemo Inc 2012.xls", /// sheet("Sheet1") firstrow ...
Work and Organizational Psychology • Emphasis Cross-Cultural Business Psychology
STATA FOR PRACTITIONERS:
CREATING AUTOMATED REPORTS IN EXCEL
Dipl.-Soz.Wiss.
SVEN-OLIVERSPIESS
01
Intro
Stata well-established among academics
However, even in those applied areas which rely heavily on quantitative data (e.g. polling, market research, etc.) Stata arguably less popular University of Osnabrück – Sven-Oliver Spieß
-2-
01
Intro Some fields, however, reliant on both domains
Being able to use same tools across settings really handy University of Osnabrück – Sven-Oliver Spieß
-3-
01
Intro ■ In release 12 many useful features to make Stata more useful in even more settings ■ One important yet somewhat neglected aspect is built-in compatibility with MS Excel data format
However, mixed feelings from both academics as well as practitioners University of Osnabrück – Sven-Oliver Spieß
-4-
01
Goals Objectives of this talk: 1. Illustrate some of the new possibilities deriving from the compatibility of Stata 12 with MS Excel
2. Make the case that Stata is actually also quite useful for practitioners 3. Advance the idea that the use of Stata outside of academia can promote scientific standards (e.g. reproducibility) not impede them
University of Osnabrück – Sven-Oliver Spieß
-5-
02
The problem: How to get from data to reports? ■ Getting information frequently tit for tat: data for results
■ Examples: Student performance in schools Job satisfaction among employees
University of Osnabrück – Sven-Oliver Spieß
-6-
02
The steps 1. Create Excel report template 2. Import raw data 3. Clean data and compute statistics 4. Loop over units to save results for each unit into a new copy of the template
University of Osnabrück – Sven-Oliver Spieß
-7-
02
Step 1 – Creation of report template
University of Osnabrück – Sven-Oliver Spieß
-8-
02
Step 2 – Raw data import
import excel "Satisfaction data Nemo Inc 2012.xls", /// sheet("Sheet1") firstrow University of Osnabrück – Sven-Oliver Spieß
-9-
02
Step 3 – Data cleaning and computation of needed results ■ In this basic example simply unit means for the five satisfaction facets: collapse Job Pay Promotion Supervision Coworkers, by(Unit)
■ Especially in more complex cases big advantage that all data manipulation and computation steps are documented and fully reproducible if needed ■ If any errors occur they can be easily corrected locally without the need to start all over again
University of Osnabrück – Sven-Oliver Spieß
- 10 -
02
Step 4 – Save results for each unit into a new copy of the template ■ Run loop which creates report for each unit by (a) deleting other units, (b) copying template for each unit with respective name, and (c) export data into template: levelsof Unit, local(units) preserve // make changes to data reversible foreach u of local units { keep if Unit==`u' copy "report_template.xlsx" "reports/unit_`u'.xlsx", replace export excel using "reports\unit_`u'.xlsx", sheet("Satisfaction") sheetmodify cell(G39) firstrow(variables)
restore, preserve
// restore full dataset for next iteration
} University of Osnabrück – Sven-Oliver Spieß
- 11 -
02
Example of a final report
University of Osnabrück – Sven-Oliver Spieß
- 12 -
03
Outlook ■ This was just a very basic example ■ Additional possibilities:
Averages of all or selected units for comparison Different languages in international projects Time trends Plotting advanced graphs Creating PDF documents …
University of Osnabrück – Sven-Oliver Spieß
- 13 -
04
Conclusion Cons
Most useful only for highly standardized reports
For some simple cases with only very few reports initial setup might take longer than producing each report individually
Pros
Added value increases the more reports need to be created and the more complex the structure (e.g. multilingual reporting, time trends, etc.)
Using syntax for the entire process of data management and analysis makes all steps reproducible and simultaneously easy to adjust
Use of wide-spread Excel format facilitates collaboration with practitioners which can enhance both good science and good practice
Overall, compatibility with MS Excel format opened many exciting possibilities when dealing with quantitative data University of Osnabrück – Sven-Oliver Spieß
- 14 -
Work and Organizational Psychology • Emphasis Cross-Cultural Business Psychology