Graphics #1. R Graphics Fundamentals & Scatter Plots

Size: px
Start display at page:

Download "Graphics #1. R Graphics Fundamentals & Scatter Plots"

Transcription

1 Graphics #1. R Graphics Fundamentals & Scatter Plots In this lab, you will learn how to generate customized publication-quality graphs in R. Working with R graphics can be done as a stepwise process. Rather than customizing a default graph, you start with a blank canvas, and then add the elements of the graph that you want. You may layer multiple graphs on top of each other (e.g. with different axis scales), or next to each other. We will focus on scatter plots in this lab, because they are actually quite suitable for the presentation of multivariate data (see second part of this lab). Also they are the essential plot type for all kinds of multivariate ordinations and bi-plots. Rather than relying on the default output of multivariate procedures, you will learn to select the elements that you want to display, and customize the graph with symbols and colors, and sizes G1.1. Import and view scatter plot data Set yourself up as usual: (1) copy an empty workspace (e.g. StartR.Rdata) from a previous lab into your working directory (e.g. C:/Lab3/), (2) open R by double clicking StartR.Rdata, (3) in R, from the menu, create and save a new script file (e.g. Lab5.r). Enter the dataset below in Excel and save it as a CSV file (e.g. Scatter.csv ), or download the dataset from the course website. ID SPEC ECOSYS DBH VOL DENSITY AGE 1 Spec1 Ecosys Spec2 Ecosys Spec1 Ecosys Spec2 Ecosys Spec2 Ecosys Spec1 Ecosys Spec2 Ecosys Spec1 Ecosys Now let s import the data with this familiar code. dat1=read.csv("scatter.csv") # import data head(dat1) # check if it imported correctly fix(dat1) # view the entire dataset if you like, then close the table attach(dat1) # sets this dataset as default As a reminder, the basic plot command has the syntax plot(x,y) or plot(y~x), which will give you the same output. ~ always means as a function of. Let s try: plot(density~vol) Right-click on the graph and choose Copy as metafile, then paste the graph into Word. Then click on the graph in Word, grab it in the corner and reduce it to ½ of the page width an appropriate size for the information it contains.

2 Does it look like the graph on the right? Font sizes and graph elements are way too small for a thesis- or publication-quality graph. We have to change a few things and customize font sizes, symbol sizes, etc. G1.2. Setting the global graphics parameters An easy way to control font and symbol sizes and the overall look of your graphs is to set a number of graphics parameters that apply to all subsequent plots. First, we ll create a clean slate with the graphics.off() command. This closes all previous graphics windows and resets all graphics parameters to the default. Next you specify the graphics window size with the windows() command. For a simple square scatter, a canvas size of 5 x5 is a good choice. Then, we may want to specify a few other global parameters: cex is a parameter that controls the size of all graph elements (normally keep the default 1, but try some values between 0.7 to 1.3). ps is a global control of the font size of all text elements (the default 12 is fine, but you can try some values between 8 to 16). The parameter family selects the font type (try: sans, serif, or mono ), and mar specifies size of the margins (bottom,left,top,right). The default is 5, but try reducing the upper and right margins, where we don t have labels, to 3: graphics.off() windows(width=5, height=5) par (cex=1, ps=12, family="sans", mar=c(5,5,3,3)) plot(density~vol) Right-click the new graph and choose Copy as metafile, then paste the graph into Word. Again, reduce the graph to ½ of the page width. This does look a bit better now. Effectively, we just reduced the canvas size, and that makes all graph elements appear a relatively larger. Controlling your canvas size is one of the most important tools to scale your final graphs. This global scaling is much preferred over controlling individual graph elements. So, that is the basic set-up. It s a good idea to always program these three lines at the beginning and whenever you execute a subsequent graphics plot. Highlight everything from the graphics.off() function to your plot command when creating a plot. In the next sections, I am not repeating this code, but I assume that you always execute these three lines as well.

3 G1.3. Building the graph with individual elements The way graphics customization work in R is that you first you take out the items that you actually want to change. We want to customize the data points (gone with type="n") the axes (gone with axes=f), and the axis labels (gone with ann=f). Instead of removing both axes, you can also get rid of the x and y axes individually (xaxt="n" or yaxt="n"). You can define the exact extent of your coordinate system with xlim and ylim. (otherwise the scale is determined by the range of each data series). The following statement leaves us with a completely blank canvas, You would only do this if you want to customize absolutely everything, which we will do for the purpose of this exercise: plot(density~vol, type="n", axes=f, ann=f, xlim=c(0.4,1.2), ylim=c(0.4,0.8)) First, let s bring the axis back in. Axis 1 is the x-axis, axis 2 the y-axis, and you can add axes 3 and 4 and the top and right if you need to. at specifies where you want your tickmarks. You can create this vector with a seq command (from, to, interval) or simply list the numbers inside a vector c(). tcl specifies the tickmark length. Negative numbers give you tick marks to the outside. Duplicate the axis command with positive and negative tickmark length to have the tick marks cross the axis. las (values between 0 and 3) rotates your tick mark labels, which we do for the y-axis. axis(1, at=seq(0.4, 1.2, 0.2), tcl=-0.3) axis(2, at=c(0.4, 0.6, 0.8), tcl=-0.3, las=1) You can modify your tick mark labels, which may come handy if you want to replace, say 1, 2, 3 with Jan, Feb, Mar, and you can place the labels between tick marks. Try these two options instead of the axis 1 command above: axis(1, at=c(0.4, 0.8, 1.2), labels=c("jan","feb","mar"), tcl=-0.3) or: axis(1, at=c(0.4, 0.8, 1.2), labels=c("","",""), tcl=-0.3) axis(1, at=c(0.6, 1), labels=c("jan","feb"), tcl=0) Let s add a title and axis labels. You can get special characters by holding down the Alt-Key on the keyboard, then enter the ASCII Code, then release the Alt-Key get s you ³. Google for the three digit ASCII Code of the four digit Windows ALT code for any other symbol or special character. Alternatively, you can also use expressions for symbols, math, or super- and subscripts, etc. title(ylab="density (g/cm³)", xlab="volume (m³)", main="wood") or: title(ylab=expression(italic(d)[wood]~(g/cm^3)), xlab=expression( sqrt(volume~(m^3))), main = "Wood") You can control the font type and size of the labels and titles with font.lab, font.main, cex.lab, and cex.main. Font options are: 1=Regular, 2=Bold, 3=Italic, 4=Bold Italic, and cex typically has a useful range from 0.7 to 1.3 (+/- 30%). Try to add cex.main=0.8 to the title statement above. Finally, let s get the data points back with a points() command. pch specifys the symbol and cex controls the size of the symbol. Try: o, O, *, +, numbers for solid symbols, numbers for symbols with a background (see the reference sheet on the next page). points(density~vol, pch=16, cex=1) You can add data with more points() commands. The data may come from the same or from different tables that you import. The code below creates some more data and adds it to the graph. VOL2=c(0.5,0.7,0.8,0.9) DENSITY2=c(0.62,0.58,0.54,0.52) points(density2~vol2, pch=21)

4 We can also add a legend, now that we have two data series. The first two numbers specify the y and x coordinates where we want to place the legend. Then, we repeat our symbol types (pch), symbol size (cex) and add a description (legend). legend(0.8~0.9, pch=c(16,21), cex=0.8,legend=c("site 1","Site 2")) Voila, this is a nicely customized scientific graph! Just as a note, you can also keep the box and/or add grid lines with abline at particular horizontal (h) and vertical (v) positions. You can control all line elements with line type: lty, (1 to 6) and line weight: lwd (1 to 4). Try this code (which does make this particular plot a little too busy) box() # outer box abline(v=0.8, h=0.6, lty=2) # single line abline(v=c(0.6, 1), h=c(0.5, 0.7), lty=2) # multiple lines OK, this is the complete toolkit for building publication-quality black-and-white graphs in R. The same principles apply to all other graph types. Keep this customization cheat-sheet handy: las= 1,2,3,4 (flips x and y axis labels)

5 G1.4. Adding functions, text and arrows You can add any function with the curve command (but you have to develop the functions first, which we ll learn later). There are arrow commands (with the syntax: from x, from y, to x, to y) to point things out. Similarly, text commands with the syntax: (x, y, text ), let you add add notes or equations. Below, some sample code to try out. plot(density~vol) 1. curve(-0.32*x+0.91, add=t, lty=2) text(0.9,0.7,"y=-0.32*x+0.91") 2. curve(0.585*x^-0.4, add=t, lty=2) text(0.9,0.7,"y=0.58x^-0.4") arrows(0.85,0.69, 0.8,0.65, length=0.1) 3. arrows(0.85,0.69, 0.8,0.65, length=0) 4. plot(density~vol, log="x") curve(-0.32*x+0.91, add=t, lty=2) text(0.9,0.7,"y=-0.32*x+0.91") arrows(0.85,0.69, 0.8,0.66, length=0.1) G1.5. Log scales Below the lazy example for exploring log scales a bit more without importing a new dataset (1:100 simply makes a graph of x/y points with 100 points from 1/1 to 100/100): 1. plot(1:100, xlab="x", ylab="y") 2. plot(1:100, log="y", xlab="x", ylab="y") 3. plot(1:100, log="y", yaxt="n", xlab="x", ylab="y") axis(2, at=c(1,10,100)) 4. plot(1:64, log="x", xaxt="n", xlab="x", ylab="y") axis(1, at=c(1,2,4,8,16,32,64)) 5. plot(1:100, log="xy", axes=f, xlab="x", ylab="y") axis(1, at=c(1,10,100)) axis(2, at=c(1,10,100)) box()

6 G1.6. Exporting data for presentations, documents or publications There are several options to save your graphs: If you want a quick record of your graph, R allows you to save a low-res image for informal record keeping: save the file in the lossless PNG format (not in JPG format, which is more suitable for photos rather than graphics). Those graphs are also good enough for presentations and websites. Click on the header bar of your graph, then choose File > Save as > PNG. Or you can run the command saveplot("myplot.png", type="png"), while the plot is open. A better option to generate high-quality vector graphics for Word and PowerPoint documents is via Windows metafiles. Right-click your graph, choose Copy as Metafile, then paste into Word. Alternatively you can save Enhanced Windows Metafiles with saveplot("myplot.emf", type="emf"), and drag the files into Word and Powerpoint. Because vector graphics are a set of instructions rather than an image, sometimes the graph may not be rendered correctly with odd fonts, or wrong symbols. If that s the case, see the alternative for working with high resolution image files below. Another good vector graphics format that is often preferred by publishing companies, and compatible with professional layout programs is PDF. This format is also preferred by scientific journals for publications. Save through the menu, or execute saveplot("myplot.pdf", type="pdf") Publishers will use the file to transfer vector graphics directly in the paper. Vector graphics combine maximal quality with the smallest possible file size. If you want better-quality images for presentations and websites, it helps to first create a PDF and subsequently create a screenshot from the PDF. Display your graph in Adobe Reader in the size that you would like the final image, hit the PrtScn key, open Microsoft Paint, hit Ctrl-V to paste the screen shot, mark the area of the graph with the Select tool, then hit Crop, and finally save your image in PNG format. This takes advantage of R s superb PDF rendering engine. You will get nicer graphics for your presentations and websites with this method (compare this with the first option side by side). Finally, if you have Adobe Acrobat Professional, you can generate high-resolution image files for Word documents by saving PNG files at high resolution: File > Save as > Image > PNG, which you can embed into a word document. Don t forget to turn-off automatic compression in Word, first: File > Save as > Tools > Compress Pictures > Options > Uncheck Automatically perform compression. That may be an alternative, if the vector graphics don t work as desired. G1.7. Touching-up graphics in external programs You can touch-up your Windows Enhanced Metafile graphs in PowerPoint. Import the graph to Powerpoint, right-click, choose Ungroup > Yes, repeat the Ungroup a second time, delete the outer frame to get access to the graph elements below. You can now edit the text and move, color, or delete any element. The professional option is to save your R graphics as PDF files, and then edit them in Adobe Illustrator, which is installed on the lab computers. Again, before you can do anything you have to Ungroup, which is done with <CTRL><A> to select all elements, then choosing from the menu Object > Clipping Mask > Release. After that it s much like PowerPoint but with more options. Finally, for low-resolution web and presentation purposes, you can use Microsoft Paint (or more advanced image editors like Adobe Photoshop), but these only work with images not vector files. Open the low or high resolution PNGs, and add, copy, paste or move elements such as legends, labels, titles, etc. The fill-tool is great to re-color elements, and the eraser is handy to remove superfluous labels or elements, which would be hard to program in R.

Lab 3 - Part A. R Graphics Fundamentals & Scatter Plots

Lab 3 - Part A. R Graphics Fundamentals & Scatter Plots Lab 3 - Part A R Graphics Fundamentals & Scatter Plots In this lab, you will learn how to generate customized publication-quality graphs in R. Working with R graphics can be done as a stepwise process.

More information

How to use Excel Spreadsheets for Graphing

How to use Excel Spreadsheets for Graphing How to use Excel Spreadsheets for Graphing 1. Click on the Excel Program on the Desktop 2. You will notice that a screen similar to the above screen comes up. A spreadsheet is divided into Columns (A,

More information

Publication-quality figures with Inkscape

Publication-quality figures with Inkscape Publication-quality figures with Inkscape In Lab 3 we briefly learnt about the different formats available to save the plots we create in R and how to modify them in PowerPoint and Adobe Illustrator. Today

More information

Graphing on Excel. Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version):

Graphing on Excel. Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version): Graphing on Excel Open Excel (2013). The first screen you will see looks like this (it varies slightly, depending on the version): The first step is to organize your data in columns. Suppose you obtain

More information

Hacking FlowJo VX. 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From

Hacking FlowJo VX. 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From Hacking FlowJo VX 42 Time-Saving FlowJo Shortcuts To Help You Get Your Data Published No Matter What Flow Cytometer It Came From Contents 1. Change the default name of your files. 2. Edit your workspace

More information

Graphics - Part III: Basic Graphics Continued

Graphics - Part III: Basic Graphics Continued Graphics - Part III: Basic Graphics Continued Statistics 135 Autumn 2005 Copyright c 2005 by Mark E. Irwin Highway MPG 20 25 30 35 40 45 50 y^i e i = y i y^i 2000 2500 3000 3500 4000 Car Weight Copyright

More information

IGCSE ICT Section 16 Presentation Authoring

IGCSE ICT Section 16 Presentation Authoring IGCSE ICT Section 16 Presentation Authoring Mr Nicholls Cairo English School P a g e 1 Contents Importing text to create slides Page 4 Manually creating slides.. Page 5 Removing blank slides. Page 5 Changing

More information

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here:

Lab 1. Introduction to R & SAS. R is free, open-source software. Get it here: Lab 1. Introduction to R & SAS R is free, open-source software. Get it here: http://tinyurl.com/yfet8mj for your own computer. 1.1. Using R like a calculator Open R and type these commands into the R Console

More information

Lab1: Use of Word and Excel

Lab1: Use of Word and Excel Dr. Fritz Wilhelm; physics 230 Lab1: Use of Word and Excel Page 1 of 9 Lab partners: Download this page onto your computer. Also download the template file which you can use whenever you start your lab

More information

ENV Laboratory 2: Graphing

ENV Laboratory 2: Graphing Name: Date: Introduction It is often said that a picture is worth 1,000 words, or for scientists we might rephrase it to say that a graph is worth 1,000 words. Graphs are most often used to express data

More information

= 3 + (5*4) + (1/2)*(4/2)^2.

= 3 + (5*4) + (1/2)*(4/2)^2. Physics 100 Lab 1: Use of a Spreadsheet to Analyze Data by Kenneth Hahn and Michael Goggin In this lab you will learn how to enter data into a spreadsheet and to manipulate the data in meaningful ways.

More information

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors:

Models for Nurses: Quadratic Model ( ) Linear Model Dx ( ) x Models for Doctors: The goal of this technology assignment is to graph several formulas in Excel. This assignment assumes that you using Excel 2007. The formula you will graph is a rational function formed from two polynomials,

More information

Configuring Figure Regions with prepplot Ulrike Grömping 03 April 2018

Configuring Figure Regions with prepplot Ulrike Grömping 03 April 2018 Configuring Figure Regions with prepplot Ulrike Grömping 3 April 218 Contents 1 Purpose and concept of package prepplot 1 2 Overview of possibilities 2 2.1 Scope.................................................

More information

Pre-Lab Excel Problem

Pre-Lab Excel Problem Pre-Lab Excel Problem Read and follow the instructions carefully! Below you are given a problem which you are to solve using Excel. If you have not used the Excel spreadsheet a limited tutorial is given

More information

IMC Innovate Make Create center

IMC Innovate Make Create center IMC Innovate Make Create center http://library.albany.edu/imc/ 518 442-3607 Tips for preparing landscape charts, images, tables & pages for the Electronic Submission of a Dissertation Including page number

More information

Numbers Basics Website:

Numbers Basics Website: Website: http://etc.usf.edu/te/ Numbers is Apple's new spreadsheet application. It is installed as part of the iwork suite, which also includes the word processing program Pages and the presentation program

More information

Excel 2007 Fundamentals

Excel 2007 Fundamentals Excel 2007 Fundamentals Introduction The aim of this document is to introduce some basic techniques for using Excel to enter data, perform calculations and produce simple charts based on that information.

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge, 11/26/2018 First think about your audience and purpose, then design your poster! Here are instructions for setting up your poster using

More information

Activity: page 1/10 Introduction to Excel. Getting Started

Activity: page 1/10 Introduction to Excel. Getting Started Activity: page 1/10 Introduction to Excel Excel is a computer spreadsheet program. Spreadsheets are convenient to use for entering and analyzing data. Although Excel has many capabilities for analyzing

More information

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7)

BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) BioFuel Graphing instructions using Microsoft Excel 2003 (Microsoft Excel 2007 instructions start on page mei-7) Graph as a XY Scatter Chart, add titles for chart and axes, remove gridlines. A. Select

More information

AA BB CC DD EE. Introduction to Graphics in R

AA BB CC DD EE. Introduction to Graphics in R Introduction to Graphics in R Cori Mar 7/10/18 ### Reading in the data dat

More information

ERP Data Analysis Part III: Figures and Movies

ERP Data Analysis Part III: Figures and Movies ERP Data Analysis Part III: Figures and Movies Congratulations, you ve found significant results! Or maybe you haven t and just wanted to show that your data can make really nice pictures that may show

More information

Introduction to the workbook and spreadsheet

Introduction to the workbook and spreadsheet Excel Tutorial To make the most of this tutorial I suggest you follow through it while sitting in front of a computer with Microsoft Excel running. This will allow you to try things out as you follow along.

More information

WORD Creating Objects: Tables, Charts and More

WORD Creating Objects: Tables, Charts and More WORD 2007 Creating Objects: Tables, Charts and More Microsoft Office 2007 TABLE OF CONTENTS TABLES... 1 TABLE LAYOUT... 1 TABLE DESIGN... 2 CHARTS... 4 PICTURES AND DRAWINGS... 8 USING DRAWINGS... 8 Drawing

More information

Fertilizer Dry Moist Wet Fertilizer Dry Moist Wet Control Control N N P P NP NP 9 8 7

Fertilizer Dry Moist Wet Fertilizer Dry Moist Wet Control Control N N P P NP NP 9 8 7 Part 6 Bar Plots & Dot Plots Bar and dot plots are used in two ways: (1) to display proportions of categories, and (2) to compare class means, i.e. experimental treatments or sampling sites. In either

More information

Title and Modify Page Properties

Title and Modify Page Properties Dreamweaver After cropping out all of the pieces from Photoshop we are ready to begin putting the pieces back together in Dreamweaver. If we were to layout all of the pieces on a table we would have graphics

More information

lab MS Excel 2010 active cell

lab MS Excel 2010 active cell MS Excel is an example of a spreadsheet, a branch of software meant for performing different kinds of calculations, numeric data analysis and presentation, statistical operations and forecasts. The main

More information

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs

Select the Points You ll Use. Tech Assignment: Find a Quadratic Function for College Costs In this technology assignment, you will find a quadratic function that passes through three of the points on each of the scatter plots you created in an earlier technology assignment. You will need the

More information

Following a tour is the easiest way to learn Prism.

Following a tour is the easiest way to learn Prism. Page 1 of 25 A tour of Prism Following a tour is the easiest way to learn Prism. View a movie Watch and listen to a ten minute introductory movie from Prism's Welcome dialog. Or view it on the web. Read

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

Developing successful posters using Microsoft PowerPoint

Developing successful posters using Microsoft PowerPoint Developing successful posters using Microsoft PowerPoint PRESENTED BY ACADEMIC TECHNOLOGY SERVICES University of San Diego Goals of a successful poster A poster is a visual presentation of your research,

More information

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons

Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons Introduction To Inkscape Creating Custom Graphics For Websites, Displays & Lessons The Inkscape Program Inkscape is a free, but very powerful vector graphics program. Available for all computer formats

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

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: ####

Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 5/17/2012 Physics 120 Section: #### Name: Dr. Fritz Wilhelm Lab 1, Presentation of lab reports Page # 1 of 7 Lab partners: Lab#1 Presentation of lab reports The first thing we do is to create page headers. In Word 2007 do the following:

More information

Spreadsheet Applications for Materials Science Getting Started Quickly Using Spreadsheets

Spreadsheet Applications for Materials Science Getting Started Quickly Using Spreadsheets Spreadsheet Applications for Materials Science Getting Started Quickly Using Spreadsheets Introduction This tutorial is designed to help you get up to speed quickly using spreadsheets in your class assignments.

More information

PowerPoint 2007 Cheat Sheet

PowerPoint 2007 Cheat Sheet ellen@ellenfinkelstein.com 515-989-1832 PowerPoint 2007 Cheat Sheet Contents Templates and Themes... 2 Apply a corporate template or theme... 2 Format the slide master... 2 Work with layouts... 3 Edit

More information

HOUR 12. Adding a Chart

HOUR 12. Adding a Chart HOUR 12 Adding a Chart The highlights of this hour are as follows: Reasons for using a chart The chart elements The chart types How to create charts with the Chart Wizard How to work with charts How to

More information

0 Graphical Analysis Use of Excel

0 Graphical Analysis Use of Excel Lab 0 Graphical Analysis Use of Excel What You Need To Know: This lab is to familiarize you with the graphing ability of excels. You will be plotting data set, curve fitting and using error bars on the

More information

How to Make Graphs with Excel 2007

How to Make Graphs with Excel 2007 Appendix A How to Make Graphs with Excel 2007 A.1 Introduction This is a quick-and-dirty tutorial to teach you the basics of graph creation and formatting in Microsoft Excel. Many of the tasks that you

More information

Excel Tips and FAQs - MS 2010

Excel Tips and FAQs - MS 2010 BIOL 211D Excel Tips and FAQs - MS 2010 Remember to save frequently! Part I. Managing and Summarizing Data NOTE IN EXCEL 2010, THERE ARE A NUMBER OF WAYS TO DO THE CORRECT THING! FAQ1: How do I sort my

More information

Microsoft Office PowerPoint 2013 Courses 24 Hours

Microsoft Office PowerPoint 2013 Courses 24 Hours Microsoft Office PowerPoint 2013 Courses 24 Hours COURSE OUTLINES FOUNDATION LEVEL COURSE OUTLINE Using PowerPoint 2013 Opening PowerPoint 2013 Opening a Presentation Navigating between Slides Using the

More information

User Manual Version 1.1 January 2015

User Manual Version 1.1 January 2015 User Manual Version 1.1 January 2015 - 2 / 112 - V1.1 Variegator... 7 Variegator Features... 7 1. Variable elements... 7 2. Static elements... 7 3. Element Manipulation... 7 4. Document Formats... 7 5.

More information

Press-Ready Cookbook Page Guidelines

Press-Ready Cookbook Page Guidelines Press-Ready Cookbook Page Guidelines table of contents These instructions are for all pages of your cookbook: Title Page, Special Pages, Table of Contents, Dividers, Recipe Pages, etc. WHAT IS PRESS-READY?

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

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout,

Introduction to CS graphs and plots in Excel Jacek Wiślicki, Laurent Babout, MS Excel 2010 offers a large set of graphs and plots for data visualization. For those who are familiar with older version of Excel, the layout is completely different. The following exercises demonstrate

More information

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear.

Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Users Guide Creating a new project To start a new project, select New from the File menu. The Select Insert dialog box will appear. Select an insert size When creating a new project, the first thing you

More information

You are to turn in the following three graphs at the beginning of class on Wednesday, January 21.

You are to turn in the following three graphs at the beginning of class on Wednesday, January 21. Computer Tools for Data Analysis & Presentation Graphs All public machines on campus are now equipped with Word 2010 and Excel 2010. Although fancier graphical and statistical analysis programs exist,

More information

Make Your Documents Accessible Worksheet (Microsoft Word 2010)

Make Your Documents Accessible Worksheet (Microsoft Word 2010) Make Your Documents Accessible Worksheet (Microsoft Word 2010) This exercise is intended for staff attending the Make your documents accessible course, although other staff will also find this resource

More information

Setup Mount the //geobase/geo4315 server and add a new Lab2 folder in your user folder.

Setup Mount the //geobase/geo4315 server and add a new Lab2 folder in your user folder. L AB 2 L AB M2 ICROSOFT E XCEL O FFICE W ORD, E XCEL & POWERP OINT XCEL & P For this lab, you will practice importing datasets into an Excel worksheet using different types of formatting. First, you will

More information

Poster-making 101 for 1 PowerPoint slide

Poster-making 101 for 1 PowerPoint slide Poster-making 101 for 1 PowerPoint slide Essential information for preparing a poster for the poster printer 1. Poster size: You will be creating a single large slide in PowerPoint. 2. Before adding any

More information

drawing tools and illustration features of PowerPoint

drawing tools and illustration features of PowerPoint drawing tools and illustration features of PowerPoint The$Harvard$Medical$School$is$accredited$by$the Accreditation$Council$for$Continuing$Medical$Education to$provide$continuing$medical$education$for$physicians.$

More information

Intro To Excel Spreadsheet for use in Introductory Sciences

Intro To Excel Spreadsheet for use in Introductory Sciences INTRO TO EXCEL SPREADSHEET (World Population) Objectives: Become familiar with the Excel spreadsheet environment. (Parts 1-5) Learn to create and save a worksheet. (Part 1) Perform simple calculations,

More information

Scientific Graphing in Excel 2007

Scientific Graphing in Excel 2007 Scientific Graphing in Excel 2007 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

User's Guide Album Express 7

User's Guide Album Express 7 User's Guide Album Express 7 www.spc-international.com Index 1.0 2.0 Introduction Getting started and System Requirement 2.1 3.0 How to set the Preference of Album Express Workflow of Album Express 4.0

More information

Total Number of Students in US (millions)

Total Number of Students in US (millions) The goal of this technology assignment is to graph a formula on your calculator and in Excel. This assignment assumes that you have a TI 84 or similar calculator and are using Excel 2007. The formula you

More information

Creating a Basic Chart in Excel 2007

Creating a Basic Chart in Excel 2007 Creating a Basic Chart in Excel 2007 A chart is a pictorial representation of the data you enter in a worksheet. Often, a chart can be a more descriptive way of representing your data. As a result, those

More information

Creating a Website Using Weebly.com (June 26, 2017 Update)

Creating a Website Using Weebly.com (June 26, 2017 Update) Creating a Website Using Weebly.com (June 26, 2017 Update) Weebly.com is a website where anyone with basic word processing skills can create a website at no cost. No special software is required and there

More information

Excel 2003 Tutorial II

Excel 2003 Tutorial II This tutorial was adapted from a tutorial by see its complete version at http://www.fgcu.edu/support/office2000/excel/index.html Excel 2003 Tutorial II Charts Chart Wizard Chart toolbar Resizing a chart

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

Microsoft Word 2010 Tutorial

Microsoft Word 2010 Tutorial 1 Microsoft Word 2010 Tutorial Microsoft Word 2010 is a word-processing program, designed to help you create professional-quality documents. With the finest documentformatting tools, Word helps you organize

More information

Dealing with Data in Excel 2013/2016

Dealing with Data in Excel 2013/2016 Dealing with Data in Excel 2013/2016 Excel provides the ability to do computations and graphing of data. Here we provide the basics and some advanced capabilities available in Excel that are useful for

More information

Microsoft Excel 2010 Basic

Microsoft Excel 2010 Basic Microsoft Excel 2010 Basic Introduction to MS Excel 2010 Microsoft Excel 2010 is a spreadsheet software in the new Microsoft 2010 Office Suite. Excel allows you to store, manipulate and analyze data in

More information

Intro to R Graphics Center for Social Science Computation and Research, 2010 Stephanie Lee, Dept of Sociology, University of Washington

Intro to R Graphics Center for Social Science Computation and Research, 2010 Stephanie Lee, Dept of Sociology, University of Washington Intro to R Graphics Center for Social Science Computation and Research, 2010 Stephanie Lee, Dept of Sociology, University of Washington Class Outline - The R Environment and Graphics Engine - Basic Graphs

More information

Types of Plotting Functions. Managing graphics devices. Further High-level Plotting Functions. The plot() Function

Types of Plotting Functions. Managing graphics devices. Further High-level Plotting Functions. The plot() Function 3 / 23 5 / 23 Outline The R Statistical Environment R Graphics Peter Dalgaard Department of Biostatistics University of Copenhagen January 16, 29 1 / 23 2 / 23 Overview Standard R Graphics The standard

More information

FRONTPAGE STEP BY STEP GUIDE

FRONTPAGE STEP BY STEP GUIDE IGCSE ICT SECTION 15 WEB AUTHORING FRONTPAGE STEP BY STEP GUIDE Mark Nicholls ICT lounge P a g e 1 Contents Introduction to this unit.... Page 4 How to open FrontPage..... Page 4 The FrontPage Menu Bar...Page

More information

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW

On the Web sun.com/aboutsun/comm_invest STAROFFICE 8 DRAW STAROFFICE 8 DRAW Graphics They say a picture is worth a thousand words. Pictures are often used along with our words for good reason. They help communicate our thoughts. They give extra information that

More information

Scientific Graphing in Excel 2013

Scientific Graphing in Excel 2013 Scientific Graphing in Excel 2013 When you start Excel, you will see the screen below. Various parts of the display are labelled in red, with arrows, to define the terms used in the remainder of this overview.

More information

Create Reflections with Images

Create Reflections with Images Create Reflections with Images Adding reflections to your images can spice up your presentation add zest to your message. Plus, it s quite nice to look at too So, how will it look? Here s an example You

More information

Studying in the Sciences

Studying in the Sciences Organising data and creating figures (charts and graphs) in Excel What is in this guide Familiarisation with Excel (for beginners) Setting up data sheets Creating a chart (graph) Formatting the chart Creating

More information

Spreadsheet View and Basic Statistics Concepts

Spreadsheet View and Basic Statistics Concepts Spreadsheet View and Basic Statistics Concepts GeoGebra 3.2 Workshop Handout 9 Judith and Markus Hohenwarter www.geogebra.org Table of Contents 1. Introduction to GeoGebra s Spreadsheet View 2 2. Record

More information

1.1 Opening/Closing the file The first step to using Excel is launching the program and knowing how to close it when you re finished.

1.1 Opening/Closing the file The first step to using Excel is launching the program and knowing how to close it when you re finished. Microsoft Excel 2016 Tutorial Microsoft Excel spreadsheets are a powerful and easy to use tool to record, plot and analyze experimental data. Excel is commonly used by engineers to tackle sophisticated

More information

1. Setup Everyone: Mount the /geobase/geo5215 drive and add a new Lab4 folder in you Labs directory.

1. Setup Everyone: Mount the /geobase/geo5215 drive and add a new Lab4 folder in you Labs directory. L A B 4 E X C E L For this lab, you will practice importing datasets into an Excel worksheet using different types of formatting. First, you will import data that is nicely organized at the source. Then

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

There are many excellent tutorials on how to use Gimp at

There are many excellent tutorials on how to use Gimp at Gimp is a free, open-source image manipulation software program used by thousands of people. You can download and install it any of the three major operating systems: Windows Mac OS X Unix/Linux Systems

More information

Designing & Creating your GIS Poster

Designing & Creating your GIS Poster Designing & Creating your GIS Poster Revised by Carolyn Talmadge and Kyle Monahan 4/24/2017 First think about your audience and purpose, then design your poster! Here are instructions for setting up your

More information

Technical Documentation Version 7.3 Output

Technical Documentation Version 7.3 Output Technical Documentation Version 7.3 Output These documents are copyrighted by the Regents of the University of Colorado. No part of this document may be reproduced, stored in a retrieval system, or transmitted

More information

Microsoft Excel 2010 Tutorial

Microsoft Excel 2010 Tutorial 1 Microsoft Excel 2010 Tutorial Excel is a spreadsheet program in the Microsoft Office system. You can use Excel to create and format workbooks (a collection of spreadsheets) in order to analyze data and

More information

Magazine Layout Design. and Adobe InDesign basics

Magazine Layout Design. and Adobe InDesign basics Magazine Layout Design and Adobe InDesign basics Click on Document on the right side of the pink and black box in the center of your screen. To create a document If this box does not pop open, go to the

More information

Plotting Complex Figures Using R. Simon Andrews v

Plotting Complex Figures Using R. Simon Andrews v Plotting Complex Figures Using R Simon Andrews simon.andrews@babraham.ac.uk v2017-11 The R Painters Model Plot area Base plot Overlays Core Graph Types Local options to change a specific plot Global options

More information

Technology Assignment: Scatter Plots

Technology Assignment: Scatter Plots The goal of this assignment is to create a scatter plot of a set of data. You could do this with any two columns of data, but for demonstration purposes we ll work with the data in the table below. You

More information

Microsoft Expression Web Quickstart Guide

Microsoft Expression Web Quickstart Guide Microsoft Expression Web Quickstart Guide MS-Expression Web Quickstart Guide Page 1 of 24 Expression Web Quickstart Guide (20-Minute Training) Welcome to Expression Web. When you first launch the program,

More information

Using Microsoft Word. Working With Objects

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

More information

Microsoft Excel 2007

Microsoft Excel 2007 Learning computers is Show ezy Microsoft Excel 2007 301 Excel screen, toolbars, views, sheets, and uses for Excel 2005-8 Steve Slisar 2005-8 COPYRIGHT: The copyright for this publication is owned by Steve

More information

proj 3B intro to multi-page layout & interactive pdf

proj 3B intro to multi-page layout & interactive pdf art 2413 typography fall 17 proj 3B intro to multi-page layout & interactive pdf objectives Students introduced to pre-made layered mockups that utilized smart art by placing vector artwork into the Photoshop

More information

Create a Scrolling Effect in PowerPoint 2007

Create a Scrolling Effect in PowerPoint 2007 Create a Scrolling Effect in PowerPoint 2007 You have a large image, document, etc. that you d like to show in your presentation and you d like to be able to scroll through it with the ability to control

More information

SES123 Computer Methods Lab Procedures

SES123 Computer Methods Lab Procedures SES123 Computer Methods Lab Procedures Introduction Science and engineering commonly involve numerical calculations, graphs, photographic images, and various types of figures. In this lab, you will use

More information

Center for Faculty Development and Support Making Documents Accessible

Center for Faculty Development and Support Making Documents Accessible Center for Faculty Development and Support Making Documents Accessible in Word 2007 Tutorial CONTENTS Create a New Document and Set Up a Document Map... 3 Apply Styles... 4 Modify Styles... 5 Use Table

More information

Intermediate Excel Training Course Content

Intermediate Excel Training Course Content Intermediate Excel Training Course Content Lesson Page 1 Absolute Cell Addressing 2 Using Absolute References 2 Naming Cells and Ranges 2 Using the Create Method to Name Cells 3 Data Consolidation 3 Consolidating

More information

Quick Guide for Photoshop CC Basics April 2016 Training:

Quick Guide for Photoshop CC Basics April 2016 Training: Photoshop CC Basics Creating a New File 1. Click File > New 2. Keep Default Photoshop Size selected in the Preset drop-down list. 3. Click OK. Showing Rulers 1. On the Menu bar, click View. 2. Click Rulers.

More information

StitchGraph User Guide V1.8

StitchGraph User Guide V1.8 StitchGraph User Guide V1.8 Thanks for buying StitchGraph: the easy way to create stitch layouts for hardanger and other complex embroidery stitch types. StitchGraph is intended to allow you to create

More information

SketchUp Quick Start For Surveyors

SketchUp Quick Start For Surveyors SketchUp Quick Start For Surveyors Reason why we are doing this SketchUp allows surveyors to draw buildings very quickly. It allows you to locate them in a plan of the area. It allows you to show the relationship

More information

GIS Virtual Workshop: Creating a Final Map

GIS Virtual Workshop: Creating a Final Map To create a map that will be pleasing to an end user, in a static format requires that certain items be added to the map such as a direction arrow, scale, title and legend. Including this information on

More information

Introduction to Excel Workshop

Introduction to Excel Workshop Introduction to Excel Workshop Empirical Reasoning Center June 6, 2016 1 Important Terminology 1. Rows are identified by numbers. 2. Columns are identified by letters. 3. Cells are identified by the row-column

More information

Google Sites Guide Nursing Student Portfolio

Google Sites Guide Nursing Student Portfolio Google Sites Guide Nursing Student Portfolio Use the template as base, but customize it according to your design! Change the colors and text, but maintain the required pages and information. Topic Outline:

More information

Add Photo Mounts To A Photo With Photoshop Part 1

Add Photo Mounts To A Photo With Photoshop Part 1 Add Photo Mounts To A Photo With Photoshop Part 1 Written by Steve Patterson. In this Photoshop Effects tutorial, we ll learn how to create and add simplephoto mounts to an image, a nice finishing touch

More information

Microsoft Excel 2007

Microsoft Excel 2007 Microsoft Excel 2007 1 Excel is Microsoft s Spreadsheet program. Spreadsheets are often used as a method of displaying and manipulating groups of data in an effective manner. It was originally created

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

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t

Tutorial 3: Using the Waveform Viewer Introduces the basics of using the waveform viewer. Read Tutorial SIMPLIS Tutorials SIMPLIS provide a range of t Tutorials Introductory Tutorials These tutorials are designed to give new users a basic understanding of how to use SIMetrix and SIMetrix/SIMPLIS. Tutorial 1: Getting Started Guides you through getting

More information

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips

A new clients guide to: Activating a new Studio 3.0 Account Creating a Photo Album Starting a Project Submitting a Project Publishing Tips Getting Started With Heritage Makers A Guide to the Heritage Studio 3.0 Drag and Drop Publishing System presented by Heritage Makers A new clients guide to: Activating a new Studio 3.0 Account Creating

More information

1 Introduction to Using Excel Spreadsheets

1 Introduction to Using Excel Spreadsheets Survey of Math: Excel Spreadsheet Guide (for Excel 2007) Page 1 of 6 1 Introduction to Using Excel Spreadsheets This section of the guide is based on the file (a faux grade sheet created for messing with)

More information