Introduction to R for Epidemiologists

Size: px
Start display at page:

Download "Introduction to R for Epidemiologists"

Transcription

1 Introduction to R for Epidemiologists Jenna Krall, PhD Thursday, January 29, 2015

2 Final project Epidemiological analysis of real data Must include: Summary statistics T-tests or chi-squared tests Regression Figures Can use provided dataset OR you may provide your own If using your own data, it: Must have at least 6 variables (with at least 2 continuous variables) Must have at least 100 observations Must be able to answer a relevant question (e.g. is air pollution associated with mortality?) You must have your data approved by me by March 5

3 Outline 1. Introduction to base plotting 2. Customizing plots 3. Multiple figures 4. Margins 5. Other plots 6. Saving plots 7. Rules for displaying data

4 Introduction to base plotting Base R comes with excellent graphing capabilities Scatterplots Histograms Box plots Graphical devices (how your computer represents graphical objects) available in R pdf postscript png jpeg

5 Introduction to base plotting base R plots: useful for creating quick plots Other graphics packages exist in R Great for "faceting" Great for multiple panels of plots Other graphics packages ggplot2 lattice Written by Hadley Wickham (RStudio) We will cover ggplot2 later in the term Also useful for multiple panels of plots We will not cover in this course

6 Introduction to base plotting Recall Fisher s iris data data(iris) head(iris) ## Sepal.Length Sepal.Width Petal.Length Petal.Width Species ## setosa ## setosa ## setosa ## setosa ## setosa ## setosa head(iris$sepal.length) ## [1]

7 Introduction to base plotting To create a scatterplot, plot(x, y) plot(x = iris$sepal.length, y = iris$sepal.width) iris$sepal.width iris$sepal.length

8 Introduction to base plotting Histograms show the data distribution for a variable The data distribution is the frequency of different values hist(iris$sepal.length) Histogram of iris$sepal.length Frequency iris$sepal.length

9 Introduction to base plotting Bar plots are used to show the relative frequency of different values of a categorial variable barplot(state.x77[, "Illiteracy"]) Alabama Georgia Maine Nevada Ohio Texas

10 Customizing plots What can we change? Add labels Change colors Change plotting symbol Add multiple plots?plot.default?par

11 Customizing plots Adding labels plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

12 Colors Use the col argument in the plot function to set color plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", col = "red", main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

13 Colors We can also use numbers to specify colors: plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", col = 3, main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

14 Colors We can also use hexadecimal notation (hex) for the combination of red, green, and blue to specify colors: plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", col = "#FF00FF", main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

15 Colors colors() ## [1] "white" "aliceblue" "antiquewhite" ## [4] "antiquewhite1" "antiquewhite2" "antiquewhite3" ## [7] "antiquewhite4" "aquamarine" "aquamarine1" ## [10] "aquamarine2" "aquamarine3" "aquamarine4" ## [13] "azure" "azure1" "azure2" ## [16] "azure3" "azure4" "beige" ## [19] "bisque" "bisque1" "bisque2" ## [22] "bisque3" "bisque4" "black" ## [25] "blanchedalmond" "blue" "blue1" ## [28] "blue2" "blue3" "blue4" ## [31] "blueviolet" "brown" "brown1" ## [34] "brown2" "brown3" "brown4" ## [37] "burlywood" "burlywood1" "burlywood2" ## [40] "burlywood3" "burlywood4" "cadetblue" ## [43] "cadetblue1" "cadetblue2" "cadetblue3" ## [46] "cadetblue4" "chartreuse" "chartreuse1" ## [49] "chartreuse2" "chartreuse3" "chartreuse4" ## [52] "chocolate" "chocolate1" "chocolate2" ## [55] "chocolate3" "chocolate4" "coral" ## [58] "coral1" "coral2" "coral3" ## [61] "coral4" "cornflowerblue" "cornsilk" ## [64] "cornsilk1" "cornsilk2" "cornsilk3" ## [67] "cornsilk4" "cyan" "cyan1"

16 Colors

17 Colors plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", main = "Sepal width vs. sepal length for Fisher's Iris data", ylab = "Sepal width", col = "dodgerblue") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

18 Colors We can also give col a vector: col_species <- vector(length = length(iris$species)) col_species[iris$species == "setosa"] <- "dodgerblue" col_species[iris$species == "versicolor"] <- "darkorchid" col_species[iris$species == "virginica"] <- "orangered" plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", main = "Sepal width vs. sepal length for Fisher's Iris data", ylab = "Sepal width", col = col_species)

19 Colors We can also give col a vector: Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

20 Plotting symbol plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", pch = 2, main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

21 Customizing plots Bar plots are used to show the relative frequency of different values of a categorial variable barplot(state.x77[, "Illiteracy"]) Alabama Georgia Maine Nevada Ohio Texas

22 Customizing plots We can use the las argument in the plot function to change the orientation of the axis barplot(state.x77[, "Illiteracy"], xlab = "State", ylab = "Illiteracy rate", main = "Illiteracy rate by state", las = 2) Illiteracy rate by state Illiteracy rate Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming State But now the x-axis labels are outside the plot!

23 Customizing plots Use par to set global plot options head(par()) ## $xlog ## [1] FALSE ## ## $ylog ## [1] FALSE ## ## $adj ## [1] 0.5 ## ## $ann ## [1] TRUE ## ## $ask ## [1] FALSE ## ## $bg ## [1] "transparent"

24 Margins Change margins using par(mar = c(bottom, left, top, right)) Let s first look at the default We select the mar element from par() mar.default <- par()$mar mar.default ## [1] Suppose we want to increase the bottom margin by 2 par(mar = c(7.1, 4.1, 4.1, 2.1)) plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data")

25 Margins Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length Plotting area extends here

26 Customizing plots par(mar = mar.default + c(5, 0, 0, 0)) barplot(state.x77[, "Illiteracy"], xlab = "State", ylab = "Illiteracy rate", main = "Illiteracy rate by state", las = 2) Illiteracy rate by state Illiteracy rate Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming State

27 Customizing plots par(mar = mar.default + c(5, 0, 0, 0)) barplot(state.x77[, "Illiteracy"], xlab = "", ylab = "Illiteracy rate", main = "Illiteracy rate by state", las = 2) mtext("state", side = 1, line = 8) Illiteracy rate by state Illiteracy rate Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware Florida Georgia Hawaii Idaho Illinois Indiana Iowa Kansas Kentucky Louisiana Maine Maryland Massachusetts Michigan Minnesota Mississippi Missouri Montana Nebraska Nevada New Hampshire New Jersey New Mexico New York North Carolina North Dakota Ohio Oklahoma Oregon Pennsylvania Rhode Island South Carolina South Dakota Tennessee Texas Utah Vermont Virginia Washington West Virginia Wisconsin Wyoming State

28 Sizing plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

29 Sizing Decrease size of plotting points plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", cex =.1, main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

30 Sizing Increase size of axis labels and axes: plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", cex.lab = 1.5, cex.axis = 2, main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

31 Sizing Look under cex for?par plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", cex.main =.7, main = "Sepal width vs. sepal length for Fisher's Iris data") Sepal width vs. sepal length for Fisher's Iris data Sepal width Sepal length

32 Layering plots What if we want to add a horizontal line for the mean sepal width? plot(x = iris$sepal.length, y = iris$sepal.width) iris$sepal.width iris$sepal.length

33 Layering plots What if we want to add a horizontal line for the mean sepal width? plot(x = iris$sepal.length, y = iris$sepal.width) abline(h = mean(iris$sepal.width), col = "red") iris$sepal.width iris$sepal.length

34 Layering plots plot(x = iris$sepal.length, y = iris$sepal.width) abline(h = mean(iris$sepal.width), col = "red") abline(v = mean(iris$sepal.length), col = "blue") iris$sepal.width iris$sepal.length

35 Layering plots Adding a specific point plot(x = iris$sepal.length, y = iris$sepal.width) points(x = mean(iris$sepal.length), y = mean(iris$sepal.width), col = "red", pch = "+", cex = 2) iris$sepal.width iris$sepal.length

36 Layering plots We can also add loess line to scatterplot Used to assess direction and magnitude associations or specify breakpoints for regression splines plot(x = iris$sepal.length, y = iris$sepal.width) lowess_iris <- lowess(x = iris$sepal.length, y = iris$sepal.width) lines(x = lowess_iris$x, y = lowess_iris$y, col = "red") iris$sepal.width iris$sepal.length

37 Multiple figures Sepal width vs. sepal length for Fisher's Iris data Sepal width vs. petal length for Fisher's Iris data Sepal width Sepal width Sepal length Petal length Petal width vs. sepal length for Fisher's Iris data Petal width vs. petal length for Fisher's Iris data Petal width Petal width Sepal length Petal length

38 Multiple figures The mfrow option in par allows us to plot multiple figures in one plot Takes the form par(mfrow = c(number of rows, number of columns)) # Change par to allow multiple figures par(mfrow = c(2, 2)) # Create four plots plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") plot(x = iris$petal.length, y = iris$sepal.width, xlab = "Petal length", ylab = "Sepal width", main = "Sepal width vs. petal length for Fisher's Iris data") plot(x = iris$sepal.length, y = iris$petal.width, xlab = "Sepal length", ylab = "Petal width", main = "Petal width vs. sepal length for Fisher's Iris data") plot(x = iris$petal.length, y = iris$petal.width, xlab = "Petal length", ylab = "Petal width", main = "Petal width vs. petal length for Fisher's Iris data")

39 Saving plots Always set your working directory before saving your plots Saving your plot as a png (portable network graphic): Height and width are in pixels (default is 480 by 480) png("iris_scatterplot.png", height = 700, width = 480) plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") dev.off() ## pdf ## 2

40 Saving plots Saving your plot as a pdf (portable document format): Height and width are in inches (default is 7 by 7) pdf("iris_scatterplot.pdf", height = 11, width = 7) plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") dev.off() ## pdf ## 2

41 Saving plots What if you don t run dev.off()? Graphics device does not close You will not have your desired output Can create multiple pages of plots pdf("iris_scatterplot_2.pdf") plot(x = iris$sepal.length, y = iris$sepal.width, xlab = "Sepal length", ylab = "Sepal width", main = "Sepal width vs. sepal length for Fisher's Iris data") plot(x = iris$petal.length, y = iris$petal.width, xlab = "Petal length", ylab = "Petal width", main = "Petal width vs. petal length for Fisher's Iris data") dev.off()

42 Last week s plot # Load google flu data load("googleflu.rdata") # Sort by date flu <- flu[order(flu$date), ] # Find years for data year <- substr(flu$date, 1, 4) # Subset to 2013 flu <- flu[year == "2013", ] # Plot time series for 2013 plot(flu$date, flu$atlanta, type = "b", xlab = "Date", ylab = "Google flu activity in Atlanta", main = "Google flu activity in Atlanta in 2013") abline(v = as.date(" "), col = "red") text(labels = "Class 1", x = as.date(" "), y = 1000, col = "red") abline(v = as.date(" "), col = "red") text(labels = "Class 5", x = as.date(" "), y = 1000, col = "red")

43 Last week s plot Google flu activity in Atlanta in 2013 Google flu activity in Atlanta Class 1 Class 5 Jan Mar May Jul Sep Nov Jan Date

44 Rules for displaying data

Manufactured Home Production by Product Mix ( )

Manufactured Home Production by Product Mix ( ) Manufactured Home Production by Product Mix (1990-2016) Data Source: Institute for Building Technology and Safety (IBTS) States with less than three active manufacturers are indicated with asterisks (*).

More information

Reporting Child Abuse Numbers by State

Reporting Child Abuse Numbers by State Youth-Inspired Solutions to End Abuse Reporting Child Abuse Numbers by State Information Courtesy of Child Welfare Information Gateway Each State designates specific agencies to receive and investigate

More information

How Social is Your State Destination Marketing Organization (DMO)?

How Social is Your State Destination Marketing Organization (DMO)? How Social is Your State Destination Marketing Organization (DMO)? Status: This is the 15th effort with the original being published in June of 2009 - to bench- mark the web and social media presence of

More information

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination Page 1 Table 1 UNBUNDLED NETWORK ELEMENT RATE COMPARISON MATRIX All Rates for RBOC in each State Unless Otherwise Noted Updated April, 2001 Loop Port Tandem Switching Density Rate Rate Switching and Transport

More information

What's Next for Clean Water Act Jurisdiction

What's Next for Clean Water Act Jurisdiction Association of State Wetland Managers Hot Topics Webinar Series What's Next for Clean Water Act Jurisdiction July 11, 2017 12:00 pm 1:30 pm Eastern Webinar Presenters: Roy Gardner, Stetson University,

More information

Arizona does not currently have this ability, nor is it part of the new system in development.

Arizona does not currently have this ability, nor is it part of the new system in development. Topic: Question by: : E-Notification Cheri L. Myers North Carolina Date: June 13, 2012 Manitoba Corporations Canada Alabama Alaska Arizona Arkansas California Colorado Connecticut Delaware District of

More information

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination

Alaska ATU 1 $13.85 $4.27 $ $ Tandem Switching $ Termination Page 1 Table 1 UNBUNDLED NETWORK ELEMENT RATE COMPARISON MATRIX All Rates for RBOC in each State Unless Otherwise Noted Updated July 1, 2001 Loop Port Tandem Switching Density Rate Rate Switching and Transport

More information

MapMarker Standard 10.0 Release Notes

MapMarker Standard 10.0 Release Notes MapMarker Standard 10.0 Release Notes Table of Contents Introduction............................................................... 1 System Requirements......................................................

More information

Alaska no no all drivers primary. Arizona no no no not applicable. primary: texting by all drivers but younger than

Alaska no no all drivers primary. Arizona no no no not applicable. primary: texting by all drivers but younger than Distracted driving Concern is mounting about the effects of phone use and texting while driving. Cellphones and texting January 2016 Talking on a hand held cellphone while driving is banned in 14 states

More information

AGILE BUSINESS MEDIA, LLC 500 E. Washington St. Established 2002 North Attleboro, MA Issues Per Year: 12 (412)

AGILE BUSINESS MEDIA, LLC 500 E. Washington St. Established 2002 North Attleboro, MA Issues Per Year: 12 (412) Please review your report carefully. If corrections are needed, please fax us the pages requiring correction. Otherwise, sign and return to your Verified Account Coordinator by fax or email. Fax to: 415-461-6007

More information

MapMarker Plus 10.2 Release Notes

MapMarker Plus 10.2 Release Notes MapMarker Plus 10.2 Table of Contents Introduction............................................................... 1 System Requirements...................................................... 1 System Recommendations..................................................

More information

Ted C. Jones, PhD Chief Economist

Ted C. Jones, PhD Chief Economist Ted C. Jones, PhD Chief Economist Hurricanes U.S. Jobs Jobs (Millions) Seasonally Adjusted 150 145 140 135 130 1.41% Prior 12 Months 2.05 Million Net New Jobs in Past 12-Months 125 '07 '08 '09 '10 '11

More information

Chart 2: e-waste Processed by SRD Program in Unregulated States

Chart 2: e-waste Processed by SRD Program in Unregulated States e Samsung is a strong supporter of producer responsibility. Samsung is committed to stepping ahead and performing strongly in accordance with our principles. Samsung principles include protection of people,

More information

Bulk Resident Agent Change Filings. Question by: Stephanie Mickelsen. Jurisdiction. Date: 20 July Question(s)

Bulk Resident Agent Change Filings. Question by: Stephanie Mickelsen. Jurisdiction. Date: 20 July Question(s) Topic: Bulk Resident Agent Change Filings Question by: Stephanie Mickelsen Jurisdiction: Kansas Date: 20 July 2010 Question(s) Jurisdiction Do you file bulk changes? How does your state file and image

More information

MapMarker Plus v Release Notes

MapMarker Plus v Release Notes Release Notes Table of Contents Introduction............................................................... 2 MapMarker Developer Installations........................................... 2 Running the

More information

CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018

CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018 CONSOLIDATED MEDIA REPORT B2B Media 6 months ended June 30, 2018 TOTAL GROSS CONTACTS 313,819 180,000 167,321 160,000 140,000 120,000 100,000 80,000 73,593 72,905 60,000 40,000 20,000 0 clinician s brief

More information

User Experience Task Force

User Experience Task Force Section 7.3 Cost Estimating Methodology Directive By March 1, 2014, a complete recommendation must be submitted to the Governor, Chief Financial Officer, President of the Senate, and the Speaker of the

More information

MapMarker Plus 12.0 Release Notes

MapMarker Plus 12.0 Release Notes MapMarker Plus 12.0 Release Notes Table of Contents Introduction, p. 2 Running the Tomcat Server as a Windows Service, p. 2 Desktop and Adapter Startup Errors, p. 2 Address Dictionary Update, p. 3 Address

More information

Is your standard BASED on the IACA standard, or is it a complete departure from the. If you did consider. using the IACA

Is your standard BASED on the IACA standard, or is it a complete departure from the. If you did consider. using the IACA Topic: XML Standards Question By: Sherri De Marco Jurisdiction: Michigan Date: 2 February 2012 Jurisdiction Question 1 Question 2 Has y If so, did jurisdiction you adopt adopted any the XML standard standard

More information

π H LBS. x.05 LB. PARCEL SCALE OVERVIEW OF CONTROLS uline.com CONTROL PANEL CONTROL FUNCTIONS lb kg 0

π H LBS. x.05 LB. PARCEL SCALE OVERVIEW OF CONTROLS uline.com CONTROL PANEL CONTROL FUNCTIONS lb kg 0 Capacity: x.5 lb / 6 x.2 kg π H-2714 LBS. x.5 LB. PARCEL SCALE 1-8-295-551 uline.com lb kg OVERVIEW OF CONTROLS CONTROL PANEL Capacity: x.5 lb / 6 x.2 kg 1 2 3 4 METTLER TOLEDO CONTROL PANEL PARTS # DESCRIPTION

More information

Question by: Scott Primeau. Date: 20 December User Accounts 2010 Dec 20. Is an account unique to a business record or to a filer?

Question by: Scott Primeau. Date: 20 December User Accounts 2010 Dec 20. Is an account unique to a business record or to a filer? Topic: User Accounts Question by: Scott Primeau : Colorado Date: 20 December 2010 Manitoba create user to create user, etc.) Corporations Canada Alabama Alaska Arizona Arkansas California Colorado Connecticut

More information

Publisher's Sworn Statement

Publisher's Sworn Statement Publisher's Sworn Statement CLOSETS & Organized Storage is published four times per year and is dedicated to providing the most current trends in design, materials and technology to the professional closets,

More information

Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities

Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities Managing Transportation Research with Databases and Spreadsheets: Survey of State Approaches and Capabilities Pat Casey AASHTO Research Advisory Committee meeting Baton Rouge, Louisiana July 18, 2013 Survey

More information

CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017

CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017 CONSOLIDATED MEDIA REPORT Business Publication 6 months ended December 31, 2017 TOTAL GROSS CONTACTS 1,952,295 2,000,000 1,800,000 1,868,402 1,600,000 1,400,000 1,200,000 1,000,000 800,000 600,000 400,000

More information

SECTION 2 NAVIGATION SYSTEM: DESTINATION SEARCH

SECTION 2 NAVIGATION SYSTEM: DESTINATION SEARCH NAVIGATION SYSTEM: DESTINATION SEARCH SECTION 2 Destination search 62 Selecting the search area............................. 62 Destination search by Home........................... 64 Destination search

More information

LAB #6: DATA HANDING AND MANIPULATION

LAB #6: DATA HANDING AND MANIPULATION NAVAL POSTGRADUATE SCHOOL LAB #6: DATA HANDING AND MANIPULATION Statistics (OA3102) Lab #6: Data Handling and Manipulation Goal: Introduce students to various R commands for handling and manipulating data,

More information

Oklahoma Economic Outlook 2016

Oklahoma Economic Outlook 2016 Oklahoma Economic Outlook 216 by Dan Rickman Regents Professor of Economics and Oklahoma Gas and Electric Services Chair in Regional Economic Analysis http://economy.okstate.edu/ U.S. Real Gross Domestic

More information

Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds

Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds Wireless Network Data Speeds Improve but Not Incidence of Data Problems, J.D. Power Finds Ranks Highest in Wireless Network Quality Performance in All Six Regions; U.S. Cellular Ties for Highest Rank in

More information

Oklahoma Economic Outlook 2015

Oklahoma Economic Outlook 2015 Oklahoma Economic Outlook 2015 by Dan Rickman Regents Professor of Economics and Oklahoma Gas and Electric Services Chair in Regional Economic Analysis http://economy.okstate.edu/ October 2013-2014 Nonfarm

More information

Terry McAuliffe-VA. Scott Walker-WI

Terry McAuliffe-VA. Scott Walker-WI Terry McAuliffe-VA Scott Walker-WI Cost Before Performance Contracting Model Energy Services Companies Savings Positive Cash Flow $ ESCO Project Payment Cost After 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16

More information

J.D. Power and Associates Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity

J.D. Power and Associates Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity Reports: Overall Wireless Network Problem Rates Differ Considerably Based on Type of Usage Activity Ranks Highest in Wireless Network Quality Performance in Five Regions WESTLAKE VILLAGE, Calif.: 25 August

More information

4/25/2013. Bevan Erickson VP, Marketing

4/25/2013. Bevan Erickson VP, Marketing 2013 Bevan Erickson VP, Marketing The Challenge of Niche Markets 1 Demographics KNOW YOUR AUDIENCE 120,000 100,000 80,000 60,000 40,000 20,000 AAPC Membership 120,000+ Members - 2 Region Members Northeast

More information

Crop Progress. Corn Emerged - Selected States [These 18 States planted 92% of the 2016 corn acreage]

Crop Progress. Corn Emerged - Selected States [These 18 States planted 92% of the 2016 corn acreage] Crop Progress ISSN: 00 Released June, 0, by the National Agricultural Statistics Service (NASS), Agricultural Statistics Board, United s Department of Agriculture (USDA). Corn Emerged Selected s [These

More information

Loops. An R programmer can determine the order of processing of commands, via use of the control statements; repeat{}, while(), for(), break, and next

Loops. An R programmer can determine the order of processing of commands, via use of the control statements; repeat{}, while(), for(), break, and next Source: https://www.r-exercises.com/2016/06/01/scripting-loops-in-r/ Loops An R programmer can determine the order of processing of commands, via use of the control statements; repeat{, while(), for(),

More information

For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy

For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy For Every Action There is An Equal and Opposite Reaction Newton Was an Economist - The Outlook for Real Estate and the Economy Ted C. Jones, PhD Chief Economist Twitter #DrTCJ Mega Themes More Jobs Than

More information

Established Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096

Established Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096 JANUARY 1, 2016 JUNE 30, 2016 SECURITY SYSTEMS NEWS UNITED PUBLICATIONS, INC. Established 1998 106 Lafayette St., P.O. Box 998 Issues Per Year: 12 Yarmouth, ME 04096 Issues This Report: 6 (207) 846-0600

More information

57,611 59,603. Print Pass-Along Recipients Website

57,611 59,603. Print Pass-Along Recipients Website TOTAL GROSS CONTACTS: 1,268,334* 1,300,000 1,200,000 1,151,120 1,100,000 1,000,000 900,000 800,000 700,000 600,000 500,000 400,000 300,000 200,000 100,000 0 57,611 59,603 Pass-Along Recipients Website

More information

How Employers Use E-Response Date: April 26th, 2016 Version: 6.51

How Employers Use E-Response Date: April 26th, 2016 Version: 6.51 NOTICE: SIDES E-Response is managed by the state from whom the request is received. If you want to sign up for SIDES E-Response, are having issues logging in to E-Response, or have questions about how

More information

MapMarker Plus v Release Notes

MapMarker Plus v Release Notes Release Notes Table of Contents Introduction............................................................... 2 MapMarker Developer Installations........................................... 2 Running the

More information

US STATE CONNECTIVITY

US STATE CONNECTIVITY US STATE CONNECTIVITY P3 REPORT FOR CELLULAR NETWORK COVERAGE IN INDIVIDUAL US STATES DIFFERENT GRADES OF COVERAGE When your mobile phone indicates it has an active signal, it is connected with the most

More information

Instructions for Enrollment

Instructions for Enrollment Instructions for Enrollment No Medicaid There are 3 documents contained in this Enrollment Packet which need to be completed to enroll with the. Please submit completed documents in a PDF to Lab Account

More information

Crop Progress. Corn Dough Selected States [These 18 States planted 92% of the 2017 corn acreage] Corn Dented Selected States ISSN:

Crop Progress. Corn Dough Selected States [These 18 States planted 92% of the 2017 corn acreage] Corn Dented Selected States ISSN: Crop Progress ISSN: 00 Released August, 0, by the National Agricultural Statistics Service (NASS), Agricultural Statistics Board, United s Department of Agriculture (USDA). Corn Dough Selected s [These

More information

Advanced LabVIEW for FTC

Advanced LabVIEW for FTC Advanced LabVIEW for FTC By Mike Turner Software Mentor, Green Machine If you only write down one slide. This is that slide. 1. Use enumerated types more often. 2. Make functional global variables for

More information

Disaster Economic Impact

Disaster Economic Impact Hurricanes Disaster Economic Impact Immediate Impact 6-12 Months Later Loss of Jobs Declining Home Sales Strong Job Growth Rising Home Sales Punta Gorda MSA Employment Thousands Seasonally Adjusted 50

More information

JIM TAYLOR PILOT CAR SVC J & J PILOT CAR SVC PILOTCAR.NET ROYAL ESCORT

JIM TAYLOR PILOT CAR SVC J & J PILOT CAR SVC PILOTCAR.NET ROYAL ESCORT Alabama CONSUMER CARRIERS, LLC 334-476-1977 DRIVERS FIRST CHOICE FAITH PILOT CAR 405-642-4276 PIT ROW SERVICES 205-763-9340 TY-TY EXPRESS PILOT CAR 334-559-1568 Arizona AG PILOT CAR 480-686-7383 ALL STATE

More information

Real Estate Forecast 2017

Real Estate Forecast 2017 Real Estate Forecast 2017 Twitter @DrTCJ Non-Renewals - Dead on Arrival Mortgage Insurance Deductibility Residential Mortgage Debt Forgiveness Residential Energy Savings Renewables Wind and Solar ObamaCare

More information

BOUNDARY PVC EVERLASTING FENCE 100% VIRGIN VINYL THE NEW YORK STYLE FENCE STOCK COLORS WHITE BEIGE BROWN/CLAY GRAY. Copyright 2007

BOUNDARY PVC EVERLASTING FENCE 100% VIRGIN VINYL THE NEW YORK STYLE FENCE STOCK COLORS WHITE BEIGE BROWN/CLAY GRAY. Copyright 2007 TM BOUNDARY PVC EVERLASTING FENCE 100% VIRGIN VINYL STOCK COLORS WHITE BEIGE BROWN/CLAY GRAY THE NEW YORK STYLE FENCE 1 Copyright 200 BEAUTIFY YOUR PROPERTY AND HAVE THE EASE OF MIND KNOWING THAT YOUR

More information

WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes

WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes WINDSTREAM CARRIER ETHERNET: E-NNI Guide & ICB Processes Version.0, April 2017 Overview The Carrier Ethernet (E-Access) product leverages Windstream s MPLS and Ethernet infrastructure to provide switched

More information

The Promise of Brown v. Board Not Yet Realized The Economic Necessity to Deliver on the Promise

The Promise of Brown v. Board Not Yet Realized The Economic Necessity to Deliver on the Promise Building on its previous work examining education and the economy, the Alliance for Excellent Education (the Alliance), with generous support from Farm, analyzed state-level economic data to determine

More information

Embedded Systems Conference Silicon Valley

Embedded Systems Conference Silicon Valley Embedded Systems Conference Silicon Valley EVENT AUDIT DATES OF EVENT: Conference: April 3 7, 2006 Exhibits: April 4 6, 2006 LOCATION: McEnery Convention Center, San Jose EVENT PRODUCER/MANAGER: Company

More information

Unsupervised Learning

Unsupervised Learning Unsupervised Learning Fabio G. Cozman - fgcozman@usp.br November 16, 2018 What can we do? We just have a dataset with features (no labels, no response). We want to understand the data... no easy to define

More information

2011 Aetna Producer Certification Help Guide. Updated July 28, 2011

2011 Aetna Producer Certification Help Guide. Updated July 28, 2011 2011 Aetna Producer Certification Help Guide Updated July 28, 2011 Table of Contents 1 Introduction...3 1.1 Welcome...3 1.2 Purpose...3 1.3 Preparation...3 1.4 Overview...4 2 Site Overview...5 2.1 Site

More information

Levels of Measurement. Data classing principles and methods. Nominal. Ordinal. Interval. Ratio. Nominal: Categorical measure [e.g.

Levels of Measurement. Data classing principles and methods. Nominal. Ordinal. Interval. Ratio. Nominal: Categorical measure [e.g. Introduction to the Mapping Sciences Map Composition & Design IV: Measurement & Class Intervaling Principles & Methods Overview: Levels of measurement Data classing principles and methods 1 2 Levels of

More information

Local Telephone Competition: Status as of December 31, 2010

Local Telephone Competition: Status as of December 31, 2010 Local Telephone Competition: Status as of December 31, 2010 Industry Analysis and Technology Division Wireline Competition Bureau October 2011 This report is available for reference in the FCC s Reference

More information

12 Interacting with Trellis Displays

12 Interacting with Trellis Displays 12 Interacting with Trellis Displays High-level functions in lattice produce trellis objects that can be thought of as abstract representations of visualizations. An actual rendering of a visualization

More information

Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability

Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability Presenting a live 90-minute webinar with interactive Q&A Distracted Driving Accident Claims Involving Mobile Devices Special Considerations and New Frontiers in Legal Liability WEDNESDAY, AUGUST 1, 2012

More information

Online Certification/Authentication of Documents re: Business Entities. Date: 05 April 2011

Online Certification/Authentication of Documents re: Business Entities. Date: 05 April 2011 Topic: Question by: : Online Certification/Authentication of Documents re: Business Entities Robert Lindsey Virginia Date: 05 April 2011 Manitoba Corporations Canada Alabama Alaska Arizona Arkansas California

More information

Guide to the Virginia Mericle Menu Collection

Guide to the Virginia Mericle Menu Collection Guide to the Vanessa Broussard Simmons and Craig Orr 2017 Archives Center, National Museum of American History P.O. Box 37012 Suite 1100, MRC 601 Washington, D.C. 20013-7012 archivescenter@si.edu http://americanhistory.si.edu/archives

More information

DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, Sands Expo & Convention Center, Las Vegas, NV

DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, Sands Expo & Convention Center, Las Vegas, NV EVENT AUDIT DATES OF EVENT: Conference: March 31 April 2, 2009 Exhibits: April 1 3, 2009 LOCATION: Sands Expo & Convention Center, Las Vegas, NV EVENT PRODUCER/MANAGER: Company Name: Reed Exhibitions Address:

More information

Ted C. Jones Chief Economist. Ted C. Jones, PhD Chief Economist

Ted C. Jones Chief Economist. Ted C. Jones, PhD Chief Economist Ted C. Jones Chief Economist Ted C. Jones, PhD Chief Economist When Getting On An Airplane, the Person On the Aisle Always Gets There First Things Change Jobs are Everything Period U.S. Jobs Jobs (Millions)

More information

Summary of the State Elder Abuse. Questionnaire for Hawaii

Summary of the State Elder Abuse. Questionnaire for Hawaii Summary of the State Elder Abuse Questionnaire for Hawaii A Final Report to: Department of Human Services February 2002 Prepared by Researchers at The University of Iowa Department of Family Medicine 2

More information

DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, Sands Expo & Convention Center, Las Vegas, NV

DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, Sands Expo & Convention Center, Las Vegas, NV EVENT AUDIT DATES OF EVENT: Conference: March 23 March 25, 2010 Exhibits: March 24 March 26, 2010 LOCATION: Sands Expo & Convention Center, Las Vegas, NV EVENT PRODUCER/MANAGER: Company Name: Reed Exhibitions

More information

76 Million Boomers. 83 Million Millennials 19 to Million Millennials 16 to 35

76 Million Boomers. 83 Million Millennials 19 to Million Millennials 16 to 35 76 Million Boomers 83 Million Millennials 19 to 35 91 Million Millennials 16 to 35 Top Millennial Population Growth Markets 2005 to 2015 12-Month Population Job Rank City, State Growth Growth 1 Charlotte,

More information

Summary of the State Elder Abuse. Questionnaire for Alaska

Summary of the State Elder Abuse. Questionnaire for Alaska Summary of the State Elder Abuse Questionnaire for Alaska A Final Report to: Department of Administration Adult Protective Services February 2002 Prepared by Researchers at The University of Iowa Department

More information

C.A.S.E. Community Partner Application

C.A.S.E. Community Partner Application C.A.S.E. Community Partner Application This application is to be completed by community organizations and agencies who wish to partner with the Civic and Service Education (C.A.S.E.) Program here at North

More information

DATES OF NEXT EVENT: Conference: June 4 8, 2007 Exhibits: June 4 7, 2007 San Diego Convention Center, San Diego, CA

DATES OF NEXT EVENT: Conference: June 4 8, 2007 Exhibits: June 4 7, 2007 San Diego Convention Center, San Diego, CA EVENT AUDIT DATES OF EVENT: Conference: July 24 28, 2006 Exhibits: July 24 27, 2006 LOCATION: Moscone Center, San Francisco, CA EVENT PRODUCER/MANAGER: Company Name: Association for Computing Machinery

More information

BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2014

BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2014 BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2014 No attempt has been made to rank the information contained in this report in order of importance, since BPA Worldwide believes this is a judgment which

More information

ADJUSTER ONLINE UPDATING INSTRUCTIONS

ADJUSTER ONLINE UPDATING INSTRUCTIONS ADJUSTER ONLINE UPDATING INSTRUCTIONS LOGGING IN How do I log in to my account? Go to www.ambest.com/claimsresource, enter your ID and Password in the login fields. Click on Edit Profile Data to enter

More information

2018 Payroll Tax Table Update Instructions (Effective January 2, 2018)

2018 Payroll Tax Table Update Instructions (Effective January 2, 2018) 2018 Payroll Tax Table Update Instructions (Effective January 2, 2018) READ THIS FIRST! These are the initial Federal and State Tax Table changes for 2018 that have been released through 1/02/2018. This

More information

Qualified recipients are Chief Executive Officers, Partners, Chairmen, Presidents, Owners, VPs, and other real estate management personnel.

Qualified recipients are Chief Executive Officers, Partners, Chairmen, Presidents, Owners, VPs, and other real estate management personnel. JANUARY 1, 2018 JUNE 30, 2018 GROUP C MEDIA 44 Apple Street Established 1968 Tinton Falls, NJ 07724 Issues Per Year: 6 (732) 559-1254 (732) 758-6634 FAX Issues This Report: 3 www.businessfacilities.com

More information

SQP Product Guide. Paper & Packaging Needs

SQP Product Guide. Paper & Packaging Needs SQP Product Guide Paper & Packaging Needs SQP is Proud to be Green! Specialty Quality Packaging has been providing environmentally friendly packaging since the company's inception in 1981. We take great

More information

FDA's Collaborative Efforts to Promote ISO/IEC 17025:2005 Accreditation for the Nation's Food/Feed Testing Laboratories

FDA's Collaborative Efforts to Promote ISO/IEC 17025:2005 Accreditation for the Nation's Food/Feed Testing Laboratories FDA's Collaborative Efforts to Promote ISO/IEC 17025:2005 Accreditation for the Nation's Food/Feed Testing Laboratories Ruiqing Pamboukian, Ph.D. Angele Smith Office of Regulatory Affairs/Office of Regulatory

More information

Legal-Compliance Department March 22, 2019 Page 1 of 7

Legal-Compliance Department March 22, 2019 Page 1 of 7 Licensing Information NMLS I.D. 2600 Corporate Office: 1600 South Douglass Road, Suites 110 & 200-A, Anaheim, CA 92806 Loan Servicing Branch Offices: 2100 E. 196 th Street, Suites 100 & 200, Westfield,

More information

24-Month Extension of Post-Completion Optional Practical Training (OPT)

24-Month Extension of Post-Completion Optional Practical Training (OPT) 24-Month Extension of Post-Completion Optional Practical Training (OPT) UNIVERSITY OF MINNESOTA DULUTH Summary: The 12-month limit on OPT can be extended by 24 months, for certain STEM (Science, Technology,

More information

Telephone Appends. White Paper. September Prepared by

Telephone Appends. White Paper. September Prepared by September 2016 Telephone Appends White Paper Prepared by Rachel Harter Joe McMichael Derick Brown Ashley Amaya RTI International 3040 E. Cornwallis Road Research Triangle Park, NC 27709 Trent Buskirk David

More information

Legal-Compliance Department October 11, 2017 Page 1 of 8

Legal-Compliance Department October 11, 2017 Page 1 of 8 Licensing Information NMLS I.D. 2600 Corporate Office: 1600 South Douglass Road, Suites 110 & 200-A, Anaheim, CA 92806 Loan Servicing Branch Offices: 2100 E. 196 th Street, Suites 100 & 200, Westfield,

More information

KEY BENEFITS STANDARD FEATURE(S)

KEY BENEFITS STANDARD FEATURE(S) Codes/Standards Applicable ANSI Z124.1.2 CSA B45 Series Whirlpool Bathtubs: UL1795 ASME A112.19.7 CSA C22.2. 218.2 CSA B45.10 KEY BENEFITS Sleek post-minimalist 2-piece combines straight and curvaceous

More information

No Place But Up Interest Rates Rents, Prices Real Estate and the Economy

No Place But Up Interest Rates Rents, Prices Real Estate and the Economy No Place But Up Interest Rates Rents, Prices Real Estate and the Economy But Not Oil Ted C. Jones, PhD Chief Economist Stewart Title Guaranty Company Mega Themes More Jobs Than Ever in History Retail Boom

More information

NEHA-NRPP APPLICATION FOR CERTIFICATION

NEHA-NRPP APPLICATION FOR CERTIFICATION NEHA-NRPP APPLICATION FOR CERTIFICATION This application is a basic form to provide NEHA-NRPP with information necessary to finalize your certification and provide you with an opportunity to apply for

More information

Options not included in this section of Schedule No. 12 have previously expired and the applicable pages may have been deleted/removed.

Options not included in this section of Schedule No. 12 have previously expired and the applicable pages may have been deleted/removed. Options not included in this section of Schedule No. 12 have previously expired and the applicable pages may have been deleted/removed. Unless agreed to, by the Company for completion of the customer s

More information

EyeforTravel s Hotel Distribution Index. EyeforTravel s Hotel Distribution Index

EyeforTravel s Hotel Distribution Index. EyeforTravel s Hotel Distribution Index EyeforTravel s Hotel Distribution Index EyeforTravel s Hotel Distribution Index What is the Distribution Index? Eyefortravel s Hotel Distribution Index is a new service that allows you to benchmark your

More information

Summary of the State Elder Abuse. Questionnaire for Texas

Summary of the State Elder Abuse. Questionnaire for Texas Summary of the State Elder Abuse Questionnaire for Texas A Final Report to: Department of Protection and Regulatory Services February 2002 Prepared by Researchers at The University of Iowa Department of

More information

45 th Design Automation Conference

45 th Design Automation Conference 45 th Design Automation Conference EVENT AUDIT DATES OF EVENT: Conference: June 8 13, 2008 Exhibits: June 8 10, 2008 LOCATION: Anaheim Convention Center, Anaheim, CA EVENT PRODUCER/MANAGER: Company Name:

More information

5 August 22, USPS Network Optimization and First Class Mail Large Commercial Accounts Questionnaire Final August 22, 2011

5 August 22, USPS Network Optimization and First Class Mail Large Commercial Accounts Questionnaire Final August 22, 2011 1 USPS Network Optimization and First Class Mail Large Commercial Accounts Questionnaire Final August 22, 2011 Project #J NOTE: DIRECTIONS IN BOLD UPPER CASE ARE PROGRAMMER INSTRUCTIONS; THESE INSTRUCTIONS

More information

Summary of the State Elder Abuse. Questionnaire for Nebraska

Summary of the State Elder Abuse. Questionnaire for Nebraska Summary of the State Elder Abuse Questionnaire for Nebraska A Final Report to: Department of Health and Human Services System February 2002 Prepared by Researchers at The University of Iowa Department

More information

GURLEY PRECISION INSTRUMENTS Sales Representatives List: North America

GURLEY PRECISION INSTRUMENTS Sales Representatives List: North America ALABAMA CALIFORNIA (ZIPS 900-935) COLORADO CHRIS GUIRY JOE DULANSKY TIMOTHY PAYMASTER c.guiry@gurley.com Joe@spectrawest.com timpay@precisionmeasurement.com Gurley Precision Instruments GUS VASSILIADES

More information

The State of E-Discovery: An Overview of State & Uniform Rulemaking Efforts

The State of E-Discovery: An Overview of State & Uniform Rulemaking Efforts October 24, 2007 The State of E-Discovery: An Overview of State & Uniform Rulemaking Efforts 2007 Kroll Ontrack Inc. www.krollontrack.com Amanda Karls Staff Attorney, Legal Technologies, Kroll Ontrack

More information

BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2018

BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2018 BRAND REPORT FOR THE 6 MONTH PERIOD ENDED JUNE 2018 No attempt has been made to rank the information contained in this report in order of importance, since BPA Worldwide believes this is a judgment which

More information

energy efficiency Building Energy Codes

energy efficiency Building Energy Codes state actions being taken Alabama Alaska Arizona Arkansas California Residential: International Residential Code (IRC) 2006 designated as minimum voluntary compliance standards Commercial: 2006 IECC is

More information

11 Manipulating the trellis Object

11 Manipulating the trellis Object 11 Manipulating the trellis Object The Trellis paradigm is different from traditional R graphics in an important respect: high-level plotting functions in lattice produce objects rather than any actual

More information

US PS E d u cati o n K it

US PS E d u cati o n K it US PS E d u cati o n K it ters Mat Stamps S tamps were first issued by the US Post Office Department in 1847. Before then, letters were brought to a post office and the postmaster wrote the postage the

More information

Summary of the State Elder Abuse. Questionnaire for New York

Summary of the State Elder Abuse. Questionnaire for New York Summary of the State Elder Abuse Questionnaire for New York A Final Report to: Office of Children and Family Services Bureau of Adult Services February 2002 Prepared by Researchers at The University of

More information

U.S. Residential High Speed Internet

U.S. Residential High Speed Internet U.S. Residential High Speed Internet High-Speed Internet High-Speed Fiber and DSL broadband options from two top providers: FIBER DSL *Availability and speeds vary by customer location. Why Sell High-Speed

More information

Year in Review. A Look Back at Commission on Paraoptometric Certification. 243 N. Lindbergh Blvd St. Louis MO

Year in Review. A Look Back at Commission on Paraoptometric Certification. 243 N. Lindbergh Blvd St. Louis MO A Look Back at 217 Commission on Paraoptometric Certification 243 N. Lindbergh Blvd St. Louis MO 63141 8.365.2219 cpc@aoa.org Table of Contents I. Background 3 II. Executive Summary 4-5 Mission Statement

More information

IACMI - The Composites Institute

IACMI - The Composites Institute IACMI - The Composites Institute Raymond. G. Boeman, Ph.D. Associate Director Vehicle Technology Area managed & operated by Michigan State University Manufacturing USA - Institutes Membership 149 Members

More information

STATE SEXUAL ASSAULT COALITIONS

STATE SEXUAL ASSAULT COALITIONS STATE SEXUAL ASSAULT COALITIONS 1 State Alabama Alaska American Samoa Arizona Arkansas Sexual Assault Coalitions Alabama Coalition Against Sexual Violence PO Box 4091 Montgomery, AL 36102 Phone: 334-264-0123

More information

1. STATEMENT OF MARKET SERVED

1. STATEMENT OF MARKET SERVED DATES OF EVENT: Conference: June 18 22, 2017 Exhibits: June 19 21, 2017 LOCATION: Austin Convention Center, Austin, TX EVENT PRODUCER/MANAGER: Company Name: Association for Computing Machinery (ACM) Electronic

More information

Robin Schneider, Executive Director of Texas Campaign for the Environment August 21, 2008

Robin Schneider, Executive Director of Texas Campaign for the Environment August 21, 2008 How to Make Texas Producer TakeBack Recycling Laws Work for Local Governments and Consumers Robin Schneider, Executive Director of Texas Campaign for the Environment August 21, 2008 1 before 1900 waste

More information

Providing Solutions B2B 2017

Providing Solutions B2B 2017 Providing Solutions B2B 2017 contents Interlude B2B 2017 cylinders 1 jars 2-3 containers 4-8 votives 9 lids 10 hydration 11 special production 11-13 customizing processes 14 index 15-16 ALL PRODUCT NAMES,

More information

OPT Work Permission for F-1 Students OPT

OPT Work Permission for F-1 Students OPT OPT Work Permission for F-1 Students OPT Optional Practical Training READ THE OPT HANDOUT! Today we will: Outline OPT Basics Review Application Process & Timing Discuss work options in US after OPT (H-1B,

More information