Does Pivot Tables and More Jim Holtman

Size: px
Start display at page:

Download "Does Pivot Tables and More Jim Holtman"

Transcription

1 Does Pivot Tables and More Jim Holtman There were several papers at CMG2008, and previous conferences, that got me thinking about other ways that R can help with the analysis and visualization of performance data. There were a couple of sessions that made use of pivot tables in Excel to help analyze data. There was also a paper that referenced sparklines as a method of visualizing data. This paper will show how R can be used to do these, and other, procedures that will enhance your ability to better analyze performance data. 1 Overview At CMG many of the papers describe how various performance metrics about a system can be analyzed. There are a number of different ways that this data is collected (proprietary vendor code, open source, user written scripts, etc.). Once this data is collected, there are again a variety of vendor, open source and user written procedures to process this information. Many of these are very flexible in providing a user with ways of customizing the subset of data to be analyzed, the algorithms to analyze the data and the format for the presentation of this data. I have used many of these tools in the past and still rely on them. Like most practitioners of computer performance analysis, I have my own tool chest of things that make by life easier. These include Perl for preprocessing/formatting unstructured data from log files, standard text editors for examining/changing data, Excel for quick looks at the data and for communicating results to others who are used to working with Excel, and of course R which is my favorite because of its versatility for analysis and graphical presentation of the results. R is an open source language and environment for statistical processing. It is based on the S language originally developed at Bell Labs by John Chambers who won the ACM award in 1998 for the language. It easily handles data files with millions of records (e.g., transaction response times), and compute, for example, the average response time and create a histogram of the response times in less than a couple of seconds. The graphics available in R for data visualization are very rich and flexible. Being able to slice/dice your data and then visualize it in various ways allows you to quickly see patterns in your data that just numbers in a table will not reveal. It is very well supported through an active user s group and there are over 85 books available covering the areas that R has been used for. I have used it for the last 25 years for doing computer performance analysis. To quickly find R on the internet, just type R into Google and it will be the first hit. The links will provide an overview of R. There is a learning curve to it, but it is well worth the effort if you are serious about performance analysis. The presentation slides have a 10 minute R workshop which provides an overview of R. 2 Pivot Tables John Van Wagenen s paper Pivot Tables/Charts Magic Beans Without Living in a Fairy Tale at CMG 2008 gave a very good overview of how pivot tables can help in analyzing, and visualizing, data that a performance analyst typically works with. Pivot tables allow an analyst to slice/dice the data in various ways, and to create aggregations of the data by various classifications. Pivot tables are typically associated with Excel, but the same information can Figure 1 - Sample 15 Minute Data From Excel be constructed by a variety of packages. For example, SQL statements can be used to group the data by various criteria and then summarize the results. Most of the vendor supplied packages have similar capabilities. John gave his permission to use the data from his paper so that I can illustrate that the results are similar when using R. The spreadsheet that he shared with

2 DAY,HOUR,MIN,SEC,MACHINE,LPAR,PHY_TOT,MIPS,CPS,CPU_HOUR,TYPE be specified. 6/2/2008,0,30,1,713,*PHYSI,3.26, ,13,0.4238,PROD The data is read into an object ( cpu.15 ) 6/2/2008,0,30,1,713,AAMTBC,0,0,13,0,TEST 6/2/2008,0,30,1,713,BBMTBC,0,0,13,0,TEST which is a dataframe. In R, a dataframe 6/2/2008,0,30,1,713,GGMTBC,0,0,13,0,TEST is very similar to an Excel spreadsheet in 6/2/2008,0,30,1,713,QA,0.63, ,13,0.0819,TEST that it looks like a table where each of the 6/2/2008,0,30,1,713,QB,1.32, ,13,0.1716,TEST 6/2/2008,0,30,1,713,QD,0.44, ,13,0.0572,TEST columns can have a different attribute 6/2/2008,0,30,1,713,SOLAR1,0.33, ,13,0.0429,PROD (e.g., character, numeric, etc.) and it is easy to reference the data items individually or as a vector representing the Figure 2 - CSV File for Input to R entire column. Part of the power of R comes from the vectorized operations that make it easy to defined transformations on the data. The contents of the dataframe are shown in Figure 5; notice that it looks very similar to the Excel spreadsheet in Figure 1. Figure 3 - Pivot Table From Excel me had some different data, but it did have the pivot tables generated from this data. 2.1 Pivot Tables The first example is from 15 minute data that was collected on system utilization. Figure 1 is a sample of the first entries in the Excel spreadsheet. To read this data into R, I converted the spreadsheet to a CSV file. R can directly read from Excel spreadsheets, but it is easier to illustrate the processing if we assume the data is in a file, since that is probably where most data is located. The resulting CSV is shown in Figure 2. In Excel a pivot table was created summarizing the CPU_HOUR over each DAY, HOUR and MIN, and generating total on each of the breaks. The Excel pivot table is shown in Figure 3. You can read John s paper to see how to setup the pivot table from the given input. To create a similar output in R, the script is shown in Figure 4. The first statement ( read.csv ) calls a function that will read in a CSV (comma separated variable) file. The default parameters are that the separator is a comma and that there is a header line in the file that defines the names of the columns when the data is read in. If your data file did not have a header line, then the parameter header=false tells the function to start reading the data at line 1; you can then assign names to the columns as you desire. If you have another separator like a tab or semicolon, these can As in any programming environment, there are a number of ways of getting similar results. In R there are a number of functions (apply, aggregate, tapply, etc.) that can summarize data in a pivot table-like format. R also has a number of packages (similar to modules in Perl, classes in Java, or libraries in C/C++) which encapsulate useful functions that minimize the amount of code that has to be written. R has a number of these packages that make it easy to transform data, aggregate the data and then summarize the results. One of the packages that I have found very useful is the reshape package which lets you restructure and aggregate your data Figure 4 - R Commands to Create the Pivot Table

3 So in the script, I indicate that I want to use the package [require(reshape)], and then I melt the dataframe that was read into specifying that I intend to use three of the columns (DAY, HOUR, MIN) to aggregate the data and that the value I want aggregate is CPU_HOUR. Now that the data has been melt ed, it can be cast into some output. The cast function has as its first parameter the object (cpu.melt) from the melt, and then a formula specifying how the Figure 5 - Dataframe in R Created from the CSV File (Looks Like Excel data is to be aggregated. The formula Spreadsheet) DAY + HOUR ~ MIN indicates that the rows will have DAY and HOUR, and that columns will contain the MIN. The data will be aggregated with these variables and the sum will be computed and stored in the resulting dataframe. There is also a parameter to indicate that margins are to be created. Margins will produce row totals and column total on the control Figure 6 - Batch Data From Excel breaks, which in this case is DAY. The output of the first 25 lines is shown in Figure 4. Comparing this output with Figure 3 shows the results are the same; the layout of the data is different. The last command just creates a pivot table for summarizing the CPU_HOUR per day. The data file had over 10,000 lines of data. It took 1 second to read the data in and create the two pivot table outputs. The script can be reused to read in any number of data files. Figure 7 - Pie Chart of Shift Usage Figure 8 - Pivot Table of Shift Usage with just two functions: melt and cast. melt puts the data into a format that can be used by cast to then create new aggregations of the data. Documentation is provided with the package that provides plenty of examples of how to use it. 2.2 Pivot Charts Another use of the output from a pivot table is to generate a chart. John had a data file about batch jobs being run. A sample of the contents of the Excel spreadsheet is shown in Figure 6. This data was summarized by shift and the pie chart in Figure 7 was created; the pivot table for this chart is Figure 8. Figure 9 shows the R script used to read in the CSV file create from the Excel spreadsheet, summarize the cpu hours by shift and then create the pie chart in Figure 11. This used another R function (tapply) to create the aggregation by shift. As I mentioned previously, there are a number of ways of doing things in R. I did notice one difference in the data in that John s pivot table filtered out HOLIDAY since there was such a small usage. I choose to leave it in, but could have easily removed it from the data. This file had about 24,000 data lines. It took 0.5 seconds to read in the data, aggregate the data and generate the pie chart. The final example makes use of some implied information in the data. In the spreadsheet the column DB2 had a name that if the 3 rd character was a P, then it

4 5/1/2007 6/1/2007 7/1/2007 8/1/2007 9/1/ /1/ /1/ /1/2007 1/1/2008 2/1/2008 3/1/2008 4/1/2008 5/1/2008 6/1/2008 cpu seconds Breakdown by Shifts Figure 9 - R Script for Shift Usage WEEKEND HOLIDAY PERIOD2 PRIME PERIOD3 Figure 11 - Pie Chart from R Figure 10 - Excel Data for Prod/Dev Pivot Table (DEV). So when the data was read in, a new column was added with this indication so the pivot table could be generated. Figure 10, Figure 12 and Figure 13 are the data in the Excel spreadsheet and the pivot table and chart created from the data. Figure 14 is the R script to read in the data, create a new column with the workload, create the pivot table and then generate the chart in Figure 15. This data only had 96 rows and it took 0.2 seconds to read in the data, do the transformations, generate the pivot table and the chart. Figure 12 - Excel Pivot Table from Data Figure 13 - Chart from Excel Pivot Table was production (PROD), otherwise it was development 3 Sparklines In Ron Kaminski s paper on Automating Process Pathology Detection Rule Engine Design Hints he described sparklines as one of the ways of presenting a lot of data in a small amount of space. Basically sparklines are graphs without the axes to clutter up the presentation of information. Sparklines were invented by Edward Tufte who is a well known expert on data visualization. DEV PROD Figure 16 is an example of sparklines showing the price of 4 stocks over a 5 year period. You can see that they have roughly the same shape, even though the y-axis has different ranges. Numbers provide the extent of these ranges and identify other important points. I have used multiple graphs on a page to show the relationships between various measurements, but typically I was limited to displaying around 15 charts with all the extra space being taken up

5 Total CPU Seconds Figure 16 - Example of Sparklines Figure 14 - R Script to Create Pivot Table and Chart Figure 15 - Chart Generated from R Figure 17 - Example of vmstat Log File by the labeling of the axes. Figure 25 is just to show the amount of space that is taken up with labeling the axes and such. It also makes it hard to compare different graphs to look for patterns. With R it is easy to generate sparklines because you have complete control over how graphics are created. R has some very sophisticated graphics, but I will use just the basic graphics to show how sparklines can be created. PROD DEV The only difference between creating a set of charts like Figure 25 and sparklines, is telling the system not to create the axes and to plot the data in a smaller window. The charts in Figure 25 were created from running the vmstat command on a UNIX system. Vmstat will record about 20 different measurements including CPU utilization, memory and number of running processes. Similar data will be used to demonstrate sparklines. One of the scripts that I have running on systems that I monitor writes the vmstat data to a file with a timestamp. This data is then read by the analysis programs and reports and charts are created. An example of the log file is shown in Figure 17. This data is read in and results in as a matrix with each row being a sample and the columns the data for that sample. Figure 18 shows the amount of R code that was written to create a plot of sparklines with nr rows and nc columns on a single page. Figure 26 is the sparklines that were generated. This represents one day of system operation (00:00 24:00). On the left side of each sparkline is the name of the measurement being plotted. This is followed by its average value over the day. The average value is represented by the horizontal gray line that can be used as a reference as to the variation of the data. The red number on the left above the gray line is the maximum value; the green number on the right below the gray line is the minimum value for the day. This allows you to quickly see some of the relationships. There is also a red dot to mark the first maximum and a green dot to mark the first minimum of the sample. The easiest one to point out is the last two lines on the chart; the idle time and the user + system time. As you can see these are mirror images of each other and this is what you would expect from the data. Even without the time being explicit, since we know that this represents a 24-hour day, we can see that the first third of the day appears to be the busiest with the overall activity in the rest of the day being low. For this system, that is what happens; it processes the performance data from a number of systems by downloading load files and then processing the data so that it is

6 Total Transactions Figure 18 - R Function to Plot Each Column as a Sparkline With nr Rows and nc Columns Figure 19 - Transaction Count for User/Tran Tran.01 Tran.02 Tran.03 Tran.04 Tran.05 Tran.06 Tran.07 Tran.08 Tran.09 Tran.10 Transaction Count by User ready by 07:00 for review to see how the system performed the previous day. Figure 27 was from a CMG2004 paper I wrote and is a levelplot for the system utilization for a month. It uses color to show what would be the z- axis value (utilization) if this were a 3D graph. The data used to create the sparklines is 5/16/05 so you should be able to compare the utilization (user + sys) of the sparkline with the levelplot. I also added to the plot the set of sparklines for the same period. Do they both convey the same information to you? In Figure 28 I just took the month s worth of sparklines and replicated them 12 times to show what a year s worth of utilization might look like. Wouldn t it be nice to have a page like this for each of your systems so that you would look for patterns. You could also line up the plot so that a day of the week was a row so you could see the pattern for that day in the month across the year. If you really like 3D plots, R can generate those also. The rgl package will create a 3D plot that you can rotate with a mouse to see different views. Figure 29, Figure 30 and Figure 31 show the interactive 3D graphs that can be created with R. User.01 User.02 User.03 User.04 User.05 User.06 User.07 User.08 User.09 User.10 Figure 20 - Stacked Bar Chart of the Transaction Count 4 Transaction Data I want to use some transaction data to show another way of visualizing the data from a pivot table. I originally had a transaction log of 79,000 transactions; 159 transaction types across 300 users. To make the data easier to present, I created 10 transaction types by splitting the transactions based on their response times (Trans.01 has the shortest average response time and

7 Tran User.01 User.02 User.03 User.04 User.05 User.06 User.07 User.08 User.09 User.10 Trans.01 Trans.02 Trans.03 Trans.04 Trans.05 Trans.06 Mosaic Plot of the Number of Transactions by User - Area Proportional to Count Trans.10 has the longest). The users were just split into 10 groups randomly. The log file has the user, transaction, start and end times. The file was read in with an R script and the pivot table in Figure 19 was created. If you look at the data, User.06 has the smallest transaction count and User.08 the largest. One way of visualizing this information is using a stacked barchart as shown in Figure 20. Here it is easy to see that User.08 entered the most transactions and User.06 the least. But it is hard to determine for each user the ratios between the individual transactions for that user. This is where a mosaic plot helps to visualize this relationship. In a mosaic plot, the values are plotted as rectangles and the area of the rectangle is proportional to the count. The vertical axis will be the same for all variables so that you can see the relationships of the transaction counts for a user. Figure 21 is the mosaic plot of the pivot table data. You can see on the chart that User.08 has the widest vertical area indicating that this user has the highest total transaction count; User.06 has the least area indicating the lowest transaction count. In this view of the data, you can see that User.06 has a higher percentage of transactions Tran.06, Tran.09 and Tran.10 than User.08. This might indicate that these two users have different roles and therefore execute different transaction mixes. A mosaic plot can help identify this condition. Figure 24 shows the relationship of the ratios of the average response times of transactions Trans.07 for each user. Here you can see that Trans.10 appears to Trans.08 have an average response time that is almost equal to the sum of the response times for the Trans.09 other 9 transactions. Again, based on how I partitioned the Trans.10 transactions, Trans.10 should User have the longest response Figure 21 - Mosaic Plot of Transaction Counts for a User time, but even across some of the users, there is quite a bit of variation. Remember that this chart does not show the value of the average response time of a transaction for a user, just the ratio of its response time compared to the other transactions executed by that user. Figure 22 - Average Response Time of Transactions for Each User Figure 22 shows the average transaction response time for each user. Even though Trans.10 has the longest response time, relatively it is less frequently executed than most of the other transactions as you can see in Figure 21. Figure 23 is a graph of the sparklines of the distribution of the average response times of the transactions for a given user. Think of this as a histogram drawn with a smooth line. The x-axis is 0-3 seconds for the response times. In the data, there was a maximum of 879 seconds for one transaction (I am not sure if the user really waited for a response in this case); the 95 th percentile was 1.7 seconds, so I choose 3 seconds for the chart since this encompassed over 95% of all the transactions. In most cases, SLAs (service level agreements) are based on XX% of the responses time being less than a given number. Systems I have worked on in the past had this number as 90%/95%. Looking at the data, it appears that User.06 and User.07 have larger tails on the right side indicating that they have are experiencing longer average response times. The pivot table in Figure 22 shows that these

8 User.01 User.02 User.03 User.04 User.05 User.06 User.07 User.08 User.09 User.10 User.01 User.02 User.03 User.04 User.05 User.06 User.07 User.08 Response Time Distribution -- Sparklines people on the projects. They will give me data in an Excel spreadsheet that I can use as input. When I generate output, in many cases I will transfer the results to an Excel spreadsheet (R can write Excel workbooks with multiple sheets) since it allows the recipient to do further manipulations of the data, or to include the data into Word documents or PowerPoint presentations. The R scripts, and data, used in this paper are available if you send me requesting them. Trans.01 Trans.02 Trans.03 Trans.04 Trans.05 Trans.06 Trans.07 Trans.08 Trans.09 Trans.10 User.09 User.10 Figure 23 -Sparklines of the Density (Histogram) Plot of Response Times for a User Mosaic Plot of Response Times - Area Proportional to Time Figure 24 Ratios of Average Response Time of Transactions for a User users do have the longest average response times across all their transactions. These users might have different roles, and therefore execute a different mix of transactions some of which have longer response times. It is this type of analysis that leads to a better understanding of your environment. 6 References [1] J. Van Wagenen, Pivot Tables/Charts Magic Beans Without Living in a Fairy Tale, CMG 2008 [2] Ron Kaminski, Automating Process Pathology Detection Rule Engine Design Hints, CMG 2008 [3] R Development Core Team, R: A Language and Environment for Statistical Computing, {ISBN} , [4] J. Holtman, Using R for System Performance Analysis, CMG 2004 [5] J. Holtman, Visualization Techniques for Analyzing Patterns in System Performance Data, CMG 2005 [6] N. J. Gunther, Guerrilla Capacity Planning, Springer-Verlag, Heidelberg, Germany, 2007 [7] H. Wickham, Reshaping data with the reshape package, Journal of Statistical Software, 21(12), 2007 [8] Venables, W. N. and Ripley, B. D. Modern Applied Statistics with S. Fourth Edition. Springer, 2002, ISBN [9] Tufte, Edward Beautiful Evidence Graphic Press 2006 [10] Spector, Phil Data Manipulation with R (Use R) Springer, ISBN Wrap-Up Hopefully I have given you some examples of other things that R can do, and hopefully they will whet your appetite to learn more about R. R should be considered as one of the tools that you have in your toolkit. In my current engagement, I use R for most of the analysis that I do, but still make extensive use of Excel. Excel happens to be the preferred way of interchanging data among the other

9 Figure 25 - Typical Multiplots Per Page - Data from 5/16/05

10 Figure 26 - Sparklines Created from 'vmstat' Log File: 19 Different Measurements for 5/16/05 (red is max; green is min)

11 Figure 27 - Levelplot (3D on 2D Surface) of System Utilization for a Month + Equivalent Sparklines

12 Figure 28 - What One Year of System Utilization Might Look Like in Sparklines

13 Figure 29-3D Chart of the Utilization Data Figure 30 - Another View of the Same Data Figure 31 - Yet Another View from Underneath

Excel Level Three. You can also go the Format, Column, Width menu to enter the new width of the column.

Excel Level Three. You can also go the Format, Column, Width menu to enter the new width of the column. Introduction Excel Level Three This workshop shows you how to change column and rows, insert and delete columns and rows, how and what to print, and setting up to print your documents. Contents Introduction

More information

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options

Excel. Excel Options click the Microsoft Office Button. Go to Excel Options Excel Excel Options click the Microsoft Office Button. Go to Excel Options Templates click the Microsoft Office Button. Go to New Installed Templates Exercise 1: Enter text 1. Open a blank spreadsheet.

More information

CS1100: Computer Science and Its Applications. Creating Graphs and Charts in Excel

CS1100: Computer Science and Its Applications. Creating Graphs and Charts in Excel CS1100: Computer Science and Its Applications Creating Graphs and Charts in Excel Charts Data is often better explained through visualization as either a graph or a chart. Excel makes creating charts easy:

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Instructor s Excel 2013 Tutorial 2 - Charts Excel 2013 Intermediate 103-124 Unit 2 - Charts Quick Links Chart Concepts Page EX197 EX199 EX200 Selecting Source Data Pages EX198 EX234 EX237 Creating a Chart

More information

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1

Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 Excel Essentials Designed by Jason Wagner, Course Web Programmer, Office of e-learning NOTE ABOUT CELL REFERENCES IN THIS DOCUMENT... 1 FREQUENTLY USED KEYBOARD SHORTCUTS... 1 FORMATTING CELLS WITH PRESET

More information

Excel. Spreadsheet functions

Excel. Spreadsheet functions Excel Spreadsheet functions Objectives Week 1 By the end of this session you will be able to :- Move around workbooks and worksheets Insert and delete rows and columns Calculate with the Auto Sum function

More information

Frequency Distributions

Frequency Distributions Displaying Data Frequency Distributions After collecting data, the first task for a researcher is to organize and summarize the data so that it is possible to get a general overview of the results. Remember,

More information

DATA STRUCTURE AND ALGORITHM USING PYTHON

DATA STRUCTURE AND ALGORITHM USING PYTHON DATA STRUCTURE AND ALGORITHM USING PYTHON Common Use Python Module II Peter Lo Pandas Data Structures and Data Analysis tools 2 What is Pandas? Pandas is an open-source Python library providing highperformance,

More information

Microsoft Excel 2016 / 2013 Basic & Intermediate

Microsoft Excel 2016 / 2013 Basic & Intermediate Microsoft Excel 2016 / 2013 Basic & Intermediate Duration: 2 Days Introduction Basic Level This course covers the very basics of the Excel spreadsheet. It is suitable for complete beginners without prior

More information

2 A little on Spreadsheets

2 A little on Spreadsheets 2 A little on Spreadsheets Spreadsheets are computer versions of an accounts ledger. They are used frequently in business, but have wider uses. In particular they are often used to manipulate experimental

More information

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below.

The first thing we ll need is some numbers. I m going to use the set of times and drug concentration levels in a patient s bloodstream given below. Graphing in Excel featuring Excel 2007 1 A spreadsheet can be a powerful tool for analyzing and graphing data, but it works completely differently from the graphing calculator that you re used to. If you

More information

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING

EXCEL + POWERPOINT. Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING EXCEL + POWERPOINT Analyzing, Visualizing, and Presenting Data-Rich Insights to Any Audience KNACK TRAINING KEYBOARD SHORTCUTS NAVIGATION & SELECTION SHORTCUTS 3 EDITING SHORTCUTS 3 SUMMARIES PIVOT TABLES

More information

Excel Core Certification

Excel Core Certification Microsoft Office Specialist 2010 Microsoft Excel Core Certification 2010 Lesson 6: Working with Charts Lesson Objectives This lesson introduces you to working with charts. You will look at how to create

More information

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning

Review Ch. 15 Spreadsheet and Worksheet Basics. 2010, 2006 South-Western, Cengage Learning Review Ch. 15 Spreadsheet and Worksheet Basics 2010, 2006 South-Western, Cengage Learning Excel Worksheet Slide 2 Move Around a Worksheet Use the mouse and scroll bars Use and (or TAB) Use PAGE UP and

More information

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex

Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Basic Topics: Formulas, LookUp Tables and PivotTables Prepared for Aero Controlex Review ribbon terminology such as tabs, groups and commands Navigate a worksheet, workbook, and multiple workbooks Prepare

More information

GO! with Microsoft Excel 2016 Comprehensive

GO! with Microsoft Excel 2016 Comprehensive GO! with Microsoft Excel 2016 Comprehensive First Edition Chapter 7 Creating PivotTables and PivotCharts Learning Objectives Create a PivotTable Report Use Slicers and Search Filters Modify a PivotTable

More information

Microsoft Excel 2010 Training. Excel 2010 Basics

Microsoft Excel 2010 Training. Excel 2010 Basics Microsoft Excel 2010 Training Excel 2010 Basics Overview Excel is a spreadsheet, a grid made from columns and rows. It is a software program that can make number manipulation easy and somewhat painless.

More information

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 2.1- #

Lecture Slides. Elementary Statistics Twelfth Edition. by Mario F. Triola. and the Triola Statistics Series. Section 2.1- # Lecture Slides Elementary Statistics Twelfth Edition and the Triola Statistics Series by Mario F. Triola Chapter 2 Summarizing and Graphing Data 2-1 Review and Preview 2-2 Frequency Distributions 2-3 Histograms

More information

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel

Learning Microsoft Excel Module 1 Contents. Chapter 1: Introduction to Microsoft Excel Module 1 Contents Chapter 1: Introduction to Microsoft Excel The Microsoft Excel Screen...1-1 Moving the Cursor...1-3 Using the Mouse...1-3 Using the Arrow Keys...1-3 Using the Scroll Bars...1-4 Moving

More information

An introduction to plotting data

An introduction to plotting data An introduction to plotting data Eric D. Black California Institute of Technology February 25, 2014 1 Introduction Plotting data is one of the essential skills every scientist must have. We use it on a

More information

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data.

COMPUTER TECHNOLOGY SPREADSHEETS BASIC TERMINOLOGY. A workbook is the file Excel creates to store your data. SPREADSHEETS BASIC TERMINOLOGY A Spreadsheet is a grid of rows and columns containing numbers, text, and formulas. A workbook is the file Excel creates to store your data. A worksheet is an individual

More information

Spreadsheet Concepts: Creating Charts in Microsoft Excel

Spreadsheet Concepts: Creating Charts in Microsoft Excel Spreadsheet Concepts: Creating Charts in Microsoft Excel lab 6 Objectives: Upon successful completion of Lab 6, you will be able to Create a simple chart on a separate chart sheet and embed it in the worksheet

More information

Chapter 2 - Graphical Summaries of Data

Chapter 2 - Graphical Summaries of Data Chapter 2 - Graphical Summaries of Data Data recorded in the sequence in which they are collected and before they are processed or ranked are called raw data. Raw data is often difficult to make sense

More information

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software.

Lastly, in case you don t already know this, and don t have Excel on your computers, you can get it for free through IT s website under software. Welcome to Basic Excel, presented by STEM Gateway as part of the Essential Academic Skills Enhancement, or EASE, workshop series. Before we begin, I want to make sure we are clear that this is by no means

More information

Excel 2010 Charts and Graphs

Excel 2010 Charts and Graphs Excel 2010 Charts and Graphs In older versions of Excel the chart engine looked tired and old. Little had changed in 15 years in charting. The popular chart wizard has been replaced in Excel 2010 by a

More information

1. Data Analysis Yields Numbers & Visualizations. 2. Why Visualize Data? 3. What do Visualizations do? 4. Research on Visualizations

1. Data Analysis Yields Numbers & Visualizations. 2. Why Visualize Data? 3. What do Visualizations do? 4. Research on Visualizations Data Analysis & Business Intelligence Made Easy with Excel Power Tools Excel Data Analysis Basics = E-DAB Notes for Video: E-DAB-05- Visualizations: Table, Charts, Conditional Formatting & Dashboards Outcomes

More information

SUM - This says to add together cells F28 through F35. Notice that it will show your result is

SUM - This says to add together cells F28 through F35. Notice that it will show your result is COUNTA - The COUNTA function will examine a set of cells and tell you how many cells are not empty. In this example, Excel analyzed 19 cells and found that only 18 were not empty. COUNTBLANK - The COUNTBLANK

More information

Intermediate Excel 2013

Intermediate Excel 2013 Intermediate Excel 2013 Class Objective: Elmhurst Public Library is committed to offering enriching programs to help our patrons Explore, Learn, and Grow. Today, technology skills are more than a valuable

More information

06 Visualizing Information

06 Visualizing Information Professor Shoemaker 06-VisualizingInformation.xlsx 1 It can be sometimes difficult to uncover meaning in data that s presented in a table or list Especially if the table has many rows and/or columns But

More information

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc

Section 2-2 Frequency Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc Section 2-2 Frequency Distributions Copyright 2010, 2007, 2004 Pearson Education, Inc. 2.1-1 Frequency Distribution Frequency Distribution (or Frequency Table) It shows how a data set is partitioned among

More information

Ms Nurazrin Jupri. Frequency Distributions

Ms Nurazrin Jupri. Frequency Distributions Frequency Distributions Frequency Distributions After collecting data, the first task for a researcher is to organize and simplify the data so that it is possible to get a general overview of the results.

More information

Mikon Client Release Notes

Mikon Client Release Notes 1(9) Mikon Client 4.0 is a major new release with a modern ribbon style menu replacing the old menu and toolbar. It will make it easier to see and find the available functions. Other new functionality

More information

9 POINTS TO A GOOD LINE GRAPH

9 POINTS TO A GOOD LINE GRAPH NAME: PD: DATE: 9 POINTS TO A GOOD LINE GRAPH - 2013 1. Independent Variable on the HORIZONTAL (X) AXIS RANGE DIVIDED BY SPACES and round up to nearest usable number to spread out across the paper. LABELED

More information

Chapter 10 Working with Graphs and Charts

Chapter 10 Working with Graphs and Charts Chapter 10: Working with Graphs and Charts 163 Chapter 10 Working with Graphs and Charts Most people understand information better when presented as a graph or chart than when they look at the raw data.

More information

Intellicus Enterprise Reporting and BI Platform

Intellicus Enterprise Reporting and BI Platform Designing Adhoc Reports Intellicus Enterprise Reporting and BI Platform Intellicus Technologies info@intellicus.com www.intellicus.com Designing Adhoc Reports i Copyright 2012 Intellicus Technologies This

More information

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1.

Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 2 INTEGRATION WITH OFFICE EDITING FILES 4 EDITING A WORKBOOK. 1. Excel Basic 1 GETTING ACQUAINTED WITH THE ENVIRONMENT 1.1 Introduction 1.2 A spreadsheet 1.3 Starting up Excel 1.4 The start screen 1.5 The interface 1.5.1 A worksheet or workbook 1.5.2 The title bar 1.5.3

More information

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program.

Using Excel This is only a brief overview that highlights some of the useful points in a spreadsheet program. Using Excel 2007 This is only a brief overview that highlights some of the useful points in a spreadsheet program. 1. Input of data - Generally you should attempt to put the independent variable on the

More information

Working with Data and Charts

Working with Data and Charts PART 9 Working with Data and Charts In Excel, a formula calculates a value based on the values in other cells of the workbook. Excel displays the result of a formula in a cell as a numeric value. A function

More information

Making EXCEL Work for YOU!

Making EXCEL Work for YOU! Tracking and analyzing numerical data is a large component of the daily activity in today s workplace. Microsoft Excel 2003 is a popular choice among individuals and companies for organizing, analyzing,

More information

Office Applications II Lesson Objectives

Office Applications II Lesson Objectives Office Applications II Lesson Unit 1: MICROSOFT EXCEL SPREADSHEETS BASICS What is a Spreadsheet and What Are Its Uses? Define spreadsheets Define the Microsoft Excel application List business, consumer,

More information

Spreadsheet Applications Test

Spreadsheet Applications Test Spreadsheet Applications Test 1. The expression returns the maximum value in the range A1:A100 and then divides the value by 100. a. =MAX(A1:A100/100) b. =MAXIMUM(A1:A100)/100 c. =MAX(A1:A100)/100 d. =MAX(100)/(A1:A100)

More information

Project 4 Financials (Excel)

Project 4 Financials (Excel) Project 4 Financials (Excel) Project Objective To offer an introduction to building spreadsheets, creating charts, and entering functions. Part 1 - Financial Projections One of the most important aspects

More information

Gloucester County Library System. Excel 2010

Gloucester County Library System. Excel 2010 Gloucester County Library System Excel 2010 Introduction What is Excel? Microsoft Excel is an electronic spreadsheet program. It is capable of performing many different types of calculations and can organize

More information

OX Documents Release v Feature Overview

OX Documents Release v Feature Overview OX Documents Release v7.8.4 Feature Overview 1 Objective of this Document... 3 1.1 The Purpose of this Document... 3 2 General Improvements... 4 2.1 Security First: Working with Encrypted Files (OX Guard)...

More information

Spreadsheet Tips and Tricks for EBSCO Usage Reports. Melissa Belvadi University of Prince Edward Island October, 2017

Spreadsheet Tips and Tricks for EBSCO Usage Reports. Melissa Belvadi University of Prince Edward Island October, 2017 Spreadsheet Tips and Tricks for EBSCO Usage Reports Melissa Belvadi University of Prince Edward Island October, 2017 Types of Usage Reports COUNTER R4 - Book, Journal, Database, Platform Standard (EBSCO)

More information

Why Should We Care? More importantly, it is easy to lie or deceive people with bad plots

Why Should We Care? More importantly, it is easy to lie or deceive people with bad plots Plots & Graphs Why Should We Care? Everyone uses plots and/or graphs But most people ignore or are unaware of simple principles Default plotting tools (or default settings) are not always the best More

More information

Basic Excel 2010 Workshop 101

Basic Excel 2010 Workshop 101 Basic Excel 2010 Workshop 101 Class Workbook Instructors: David Newbold Jennifer Tran Katie Spencer UCSD Libraries Educational Services 06/13/11 Why Use Excel? 1. It is the most effective and efficient

More information

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example

Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example Rockefeller College MPA Excel Workshop: Clinton Impeachment Data Example This exercise is a follow-up to the MPA admissions example used in the Excel Workshop. This document contains detailed solutions

More information

Excel 2013 Intermediate

Excel 2013 Intermediate Excel 2013 Intermediate Quick Access Toolbar... 1 Customizing Excel... 2 Keyboard Shortcuts... 2 Navigating the Spreadsheet... 2 Status Bar... 3 Worksheets... 3 Group Column/Row Adjusments... 4 Hiding

More information

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010

CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 CHAPTER 4: MICROSOFT OFFICE: EXCEL 2010 Quick Summary A workbook an Excel document that stores data contains one or more pages called a worksheet. A worksheet or spreadsheet is stored in a workbook, and

More information

. Sheet - Sheet. Unhide Split Freeze. Sheet (book) - Sheet-book - Sheet{book} - Sheet[book] - Arrange- Freeze- Split - Unfreeze - .

. Sheet - Sheet. Unhide Split Freeze. Sheet (book) - Sheet-book - Sheet{book} - Sheet[book] - Arrange- Freeze- Split - Unfreeze - . 101 Excel 2007 (Workbook) : :. Sheet Workbook. Sheet Delete. Sheet. Unhide Split Freeze.1.2.3.4.5.6 Sheet.7 Sheet-book - Sheet (book) - Sheet{book} - Sheet[book] - Split - Unfreeze -.8 Arrange - Unhide

More information

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller

Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Excel Basics Rice Digital Media Commons Guide Written for Microsoft Excel 2010 Windows Edition by Eric Miller Table of Contents Introduction!... 1 Part 1: Entering Data!... 2 1.a: Typing!... 2 1.b: Editing

More information

Chapter 2 Organizing and Graphing Data. 2.1 Organizing and Graphing Qualitative Data

Chapter 2 Organizing and Graphing Data. 2.1 Organizing and Graphing Qualitative Data Chapter 2 Organizing and Graphing Data 2.1 Organizing and Graphing Qualitative Data 2.2 Organizing and Graphing Quantitative Data 2.3 Stem-and-leaf Displays 2.4 Dotplots 2.1 Organizing and Graphing Qualitative

More information

Ms excel. The Microsoft Office Button. The Quick Access Toolbar

Ms excel. The Microsoft Office Button. The Quick Access Toolbar Ms excel MS Excel is electronic spreadsheet software. In This software we can do any type of Calculation & inserting any table, data and making chart and graphs etc. the File of excel is called workbook.

More information

Practical QlikView MARK O DONOVAN

Practical QlikView MARK O DONOVAN Practical QlikView MARK O DONOVAN Copyright 2012 Mark O Donovan All rights reserved. ISBN-10: 1478158603 ISBN-13: 978-1478158608 DEDICATION I dedicate this book to my parents, Ita and Larry. For listening

More information

EXCEL 2003 DISCLAIMER:

EXCEL 2003 DISCLAIMER: EXCEL 2003 DISCLAIMER: This reference guide is meant for experienced Microsoft Excel users. It provides a list of quick tips and shortcuts for familiar features. This guide does NOT replace training or

More information

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams

Chapter 13. Creating Business Diagrams with SmartArt. Creating SmartArt Diagrams Chapter 13 Creating Business Diagrams with SmartArt Office 2007 adds support for 80 different types of business diagrams. These diagrams include list charts, process charts, cycle charts, hierarchy and

More information

CHAPTER 6. The Normal Probability Distribution

CHAPTER 6. The Normal Probability Distribution The Normal Probability Distribution CHAPTER 6 The normal probability distribution is the most widely used distribution in statistics as many statistical procedures are built around it. The central limit

More information

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65

Contents. Introduction 15. How to use this course 18. Session One: Basic Skills 21. Session Two: Doing Useful Work with Excel 65 Contents Introduction 15 Downloading the sample files... 15 Problem resolution... 15 The Excel version and locale that were used to write this book... 15 Typographical Conventions Used in This Book...

More information

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet

Spreadsheet definition: Starting a New Excel Worksheet: Navigating Through an Excel Worksheet Copyright 1 99 Spreadsheet definition: A spreadsheet stores and manipulates data that lends itself to being stored in a table type format (e.g. Accounts, Science Experiments, Mathematical Trends, Statistics,

More information

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet!

Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Become strong in Excel (2.0) - 5 Tips To Rock A Spreadsheet! Hi folks! Before beginning the article, I just wanted to thank Brian Allan for starting an interesting discussion on what Strong at Excel means

More information

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013

DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 DOING MORE WITH EXCEL: MICROSOFT OFFICE 2013 GETTING STARTED PAGE 02 Prerequisites What You Will Learn MORE TASKS IN MICROSOFT EXCEL PAGE 03 Cutting, Copying, and Pasting Data Basic Formulas Filling Data

More information

EXCEL BASICS: MICROSOFT OFFICE 2007

EXCEL BASICS: MICROSOFT OFFICE 2007 EXCEL BASICS: MICROSOFT OFFICE 2007 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT EXCEL PAGE 03 Opening Microsoft Excel Microsoft Excel Features Keyboard Review Pointer Shapes

More information

MS Excel Advanced Level

MS Excel Advanced Level MS Excel Advanced Level Trainer : Etech Global Solution Contents Conditional Formatting... 1 Remove Duplicates... 4 Sorting... 5 Filtering... 6 Charts Column... 7 Charts Line... 10 Charts Bar... 10 Charts

More information

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper

HP StorageWorks Command View TL TapeAssure Analysis Template White Paper HP StorageWorks Command View TL TapeAssure Analysis Template White Paper Part Number: AD560-96083 1 st edition: November 2010 HP StorageWorks Command View TL TapeAssure Analysis Template The TapeAssure

More information

Excel 2010: Getting Started with Excel

Excel 2010: Getting Started with Excel Excel 2010: Getting Started with Excel Excel 2010 Getting Started with Excel Introduction Page 1 Excel is a spreadsheet program that allows you to store, organize, and analyze information. In this lesson,

More information

PivotTables & Charts for Health

PivotTables & Charts for Health PivotTables & Charts for Health Data Inputs PivotTables Pivot Charts Global Strategic Information UCSF Global Health Sciences Version Malaria 1.0 1 Table of Contents 1.1. Introduction... 3 1.1.1. Software

More information

Use of GeoGebra in teaching about central tendency and spread variability

Use of GeoGebra in teaching about central tendency and spread variability CREAT. MATH. INFORM. 21 (2012), No. 1, 57-64 Online version at http://creative-mathematics.ubm.ro/ Print Edition: ISSN 1584-286X Online Edition: ISSN 1843-441X Use of GeoGebra in teaching about central

More information

If the list that you want to name will change In Excel 2007 and later, the easiest way to create.

If the list that you want to name will change In Excel 2007 and later, the easiest way to create. Guide Of Excel 2007 In A List Create Named Range The tutorial demonstrates 4 quick ways to create an Excel drop down list - based on a 3-step way to create a drop-down box in all versions of Excel 2013,

More information

Excel 2. Module 3 Advanced Charts

Excel 2. Module 3 Advanced Charts Excel 2 Module 3 Advanced Charts Revised 1/1/17 People s Resource Center Module Overview This module is part of the Excel 2 course which is for advancing your knowledge of Excel. During this lesson we

More information

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum)

Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Unit 2 Fine-tuning Spreadsheets, Functions (AutoSum) Select a Row or a Column Place your pointer over the Column Header (gray cell at the top of a column that contains a letter identifying the column)

More information

Instructions on Adding Zeros to the Comtrade Data

Instructions on Adding Zeros to the Comtrade Data Instructions on Adding Zeros to the Comtrade Data Required: An excel spreadshheet with the commodity codes for all products you want included. In this exercise we will want all 4-digit SITC Revision 2

More information

How to stay connected. Stay connected with DIIT

How to stay connected. Stay connected with DIIT Google Level 1 1 How to stay connected Stay connected with DIIT Google Sheets 3 Create a Google Sheet For this session open: SAMPLE DATA SHEET Yes, Make a Copy From Your Drive: New>>Google Sheets Or 4

More information

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9

Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Survey of Math: Excel Spreadsheet Guide (for Excel 2016) Page 1 of 9 Contents 1 Introduction to Using Excel Spreadsheets 2 1.1 A Serious Note About Data Security.................................... 2 1.2

More information

Microsoft Excel 2010 Handout

Microsoft Excel 2010 Handout Microsoft Excel 2010 Handout Excel is an electronic spreadsheet program you can use to enter and organize data, and perform a wide variety of number crunching tasks. Excel helps you organize and track

More information

Chart For Dummies Excel 2010 Title From Cell Value Into

Chart For Dummies Excel 2010 Title From Cell Value Into Chart For Dummies Excel 2010 Title From Cell Value Into Outlook.com People Calendar OneDrive Word Online Excel Online To add text to a chart that is separate from the text in chart titles or labels, you

More information

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE

EVALUATION COPY. Unauthorized Reproduction or Distribution Prohibited EXCEL INTERMEDIATE EXCEL INTERMEDIATE Overview NOTES... 2 OVERVIEW... 3 VIEW THE PROJECT... 5 USING FORMULAS AND FUNCTIONS... 6 BASIC EXCEL REVIEW... 6 FORMULAS... 7 Typing formulas... 7 Clicking to insert cell references...

More information

SHOW ME THE NUMBERS: DESIGNING YOUR OWN DATA VISUALIZATIONS PEPFAR Applied Learning Summit September 2017 A. Chafetz

SHOW ME THE NUMBERS: DESIGNING YOUR OWN DATA VISUALIZATIONS PEPFAR Applied Learning Summit September 2017 A. Chafetz SHOW ME THE NUMBERS: DESIGNING YOUR OWN DATA VISUALIZATIONS PEPFAR Applied Learning Summit September 2017 A. Chafetz Overview In order to prepare for the upcoming POART, you need to look into testing as

More information

Unit 3 Fill Series, Functions, Sorting

Unit 3 Fill Series, Functions, Sorting Unit 3 Fill Series, Functions, Sorting Fill enter repetitive values or formulas in an indicated direction Using the Fill command is much faster than using copy and paste you can do entire operation in

More information

Table of Contents (As covered from textbook)

Table of Contents (As covered from textbook) Table of Contents (As covered from textbook) Ch 1 Data and Decisions Ch 2 Displaying and Describing Categorical Data Ch 3 Displaying and Describing Quantitative Data Ch 4 Correlation and Linear Regression

More information

Excel 2013 Charts and Graphs

Excel 2013 Charts and Graphs Excel 2013 Charts and Graphs Copyright 2016 Faculty and Staff Training, West Chester University. A member of the Pennsylvania State System of Higher Education. No portion of this document may be reproduced

More information

Office Excel. Charts

Office Excel. Charts Office 2007 Excel Charts October 2007 CONTENTS INTRODUCTION... 1 Bold text... 2 CHART TYPES... 3 CHOOSING A CHART... 4 CREATING A COLUMN CHART... 5 FORMATTING A COLUMN CHART... 8 Changing the chart style...

More information

Chemistry 30 Tips for Creating Graphs using Microsoft Excel

Chemistry 30 Tips for Creating Graphs using Microsoft Excel Chemistry 30 Tips for Creating Graphs using Microsoft Excel Graphing is an important skill to learn in the science classroom. Students should be encouraged to use spreadsheet programs to create graphs.

More information

1.a) Go to it should be accessible in all browsers

1.a) Go to  it should be accessible in all browsers ECO 445: International Trade Professor Jack Rossbach Instructions on doing the Least Traded Product Exercise with Excel Step 1 Download Data from Comtrade [This step is done for you] 1.a) Go to http://comtrade.un.org/db/dqquickquery.aspx

More information

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center

Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Unit 3 Functions Review, Fill Series, Sorting, Merge & Center Function built-in formula that performs simple or complex calculations automatically names a function instead of using operators (+, -, *,

More information

Excel 2013 Workshop. Prepared by

Excel 2013 Workshop. Prepared by Excel 2013 Workshop Prepared by Joan Weeks Computer Labs Manager & Madeline Davis Computer Labs Assistant Department of Library and Information Science June 2014 Excel 2013: Fundamentals Course Description

More information

Introduction to Minitab 1

Introduction to Minitab 1 Introduction to Minitab 1 We begin by first starting Minitab. You may choose to either 1. click on the Minitab icon in the corner of your screen 2. go to the lower left and hit Start, then from All Programs,

More information

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems

GCSE CCEA GCSE EXCEL 2010 USER GUIDE. Business and Communication Systems GCSE CCEA GCSE EXCEL 2010 USER GUIDE Business and Communication Systems For first teaching from September 2017 Contents Page Define the purpose and uses of a spreadsheet... 3 Define a column, row, and

More information

Chapter 3 Analyzing Normal Quantitative Data

Chapter 3 Analyzing Normal Quantitative Data Chapter 3 Analyzing Normal Quantitative Data Introduction: In chapters 1 and 2, we focused on analyzing categorical data and exploring relationships between categorical data sets. We will now be doing

More information

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication

Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Coding & Data Skills for Communicators Dr. Cindy Royal Texas State University - San Marcos School of Journalism and Mass Communication Spreadsheet Basics Excel is a powerful productivity tool. It s a spreadsheet

More information

Programming. Dr Ben Dudson University of York

Programming. Dr Ben Dudson University of York Programming Dr Ben Dudson University of York Outline Last lecture covered the basics of programming and IDL This lecture will cover More advanced IDL and plotting Fortran and C++ Programming techniques

More information

Excel Manual X Axis Labels Below Chart 2010

Excel Manual X Axis Labels Below Chart 2010 Excel Manual X Axis Labels Below Chart 2010 When the X-axis is crowded with labels one way to solve the problem is to split the labels for to use two rows of labels enter the two rows of X-axis labels

More information

Golden Software, Inc.

Golden Software, Inc. Golden Software, Inc. Only $299! The most sophisticated graphing package available, providing the professional quality you need with the flexibility you want. Create one of the more than 30 different graph

More information

Excel Tables and Pivot Tables

Excel Tables and Pivot Tables A) Why use a table in the first place a. Easy to filter and sort if you only sort or filter by one item b. Automatically fills formulas down c. Can easily add a totals row d. Easy formatting with preformatted

More information

Excel Level 1

Excel Level 1 Excel 2016 - Level 1 Tell Me Assistant The Tell Me Assistant, which is new to all Office 2016 applications, allows users to search words, or phrases, about what they want to do in Excel. The Tell Me Assistant

More information

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview

Microsoft Office Excel 2010: Basic. Course Overview. Course Length: 1 Day. Course Overview Microsoft Office Excel 2010: Basic Course Length: 1 Day Course Overview This course teaches the basic functions and features of Excel 2010. After an introduction to spreadsheet terminology and Excel's

More information

Desktop Studio: Charts. Version: 7.3

Desktop Studio: Charts. Version: 7.3 Desktop Studio: Charts Version: 7.3 Copyright 2015 Intellicus Technologies This document and its content is copyrighted material of Intellicus Technologies. The content may not be copied or derived from,

More information

+ Statistical Methods in

+ Statistical Methods in + Statistical Methods in Practice STA/MTH 3379 + Dr. A. B. W. Manage Associate Professor of Statistics Department of Mathematics & Statistics Sam Houston State University Discovering Statistics 2nd Edition

More information

Introduction to Excel 2007

Introduction to Excel 2007 Introduction to Excel 2007 Excel 2007 is a software program that creates a spreadsheet. It permits the user to enter data and formulas to perform mathematical and Boolean (comparison) calculations on the

More information

Spreadsheet Software L2 Unit Book

Spreadsheet Software L2 Unit Book Spreadsheet Software L2 Unit Book Contents Follow our unique Step by Step Unit Completion guide to complete the Unit efficiently, and effectively. Step 1. Unit Overview Step 2. Plannning your task Step

More information