R visual in Power BI: with pbiviz and ggplot2

Size: px
Start display at page:

Download "R visual in Power BI: with pbiviz and ggplot2"

Transcription

1 R visual in Power BI: with pbiviz and ggplot2 Leila Etaati AI MVP, Consultant, Data Science from RADACAD

2 Agenda Data Behavior Analysis Charts (Centre and Distribution Data) More Charts with ggplot2 Package in Power BI R and Power BI Predefined R Custom Visual in Office Store Create your Own Power BI Custom Visual using R

3 Leila Etaati Microsoft AI MVP, PhD, Consultant, Trainer and Data Scientist. International speaker in Microsoft Ignite USA 2017, Microsoft Insight Summit 2017, PASS Summit 2017, Microsoft NZ Ignite 2016, PASS BA, PASS24H, SQL Rally, SQL Saturday in Oregon, Vienna, Auckland, Melbourne, Sydney, Brisbane.

4 Graphic and Visualization Static Graph Dynamic Graph Device Format

5

6

7 Data Behavior Analysis Charts (Centre and Distribution Data)

8 Exploring and Understanding data install.packages("readr") library(readr) usedcars <- read_csv("c:/users/leila/dropbox/leila Speak/Difnity/usedcars.csv") View(usedcars) str(usedcars) summary(usedcars$year) summary(usedcars[c("price", "mileage")])

9 Measuring the central tendency mean and median The average is also known as the mean mean(c(36000, 44000, 56000)) Median is the value that occurs halfway through an ordered list of values median(c(36000, 44000, 56000)) 12,23,34,22,28,36,27,30,21,20,65 Average or Mean is 28 12,20,21,22,23,27,28,30,34,36,65 Median is 27 5,2,12,23,34,22,28,36,27,30,21,20,65,90,80 Average or Mean is 33 2,5,12, 20,21,22,23,27,28,30,34,36,65,90,80 Median 27

10

11 Measuring spread quartiles and the fivenumber boxplot(usedcars$price, main="boxplot of Used Car Prices", ylab="price ($)") boxplot(usedcars$mileage, main="boxplot of Used Car Mileage", ylab="odometer (mi.)")

12 Visualizing numeric variables histograms hist(usedcars$price, main = "Histogram of Used Car Prices", xlab = "Price ($)") hist(usedcars$mileage, main = "Histogram of Used Car Mileage", xlab = "Odometer (mi.)")

13 Normalization in Power BI for Calories Burn

14 More Charts with ggplot2 Package in Power BI

15

16 Grouping data diagram-facet library(ggplot2) t<-ggplot(mpg, aes(x=cty, y=hwy,size=cyl)) + geom_point(pch=21)+scale_size_continuous(range=c(1,5)) t library(reshape2) t<-ggplot(mpg, aes(x=cty, y=hwy,color=cyl)) + geom_point(size=5) t<-t + facet_wrap(year~ drv) t

17

18

19 library(ggplot2) library(scales) theme_set(theme_classic()) # prep data df <- read.csv(" colnames(df) <- c("continent", "1952", "1957") left_label <- paste(df$continent, round(df$`1952`),sep=", ") right_label <- paste(df$continent, round(df$`1957`),sep=", ") df$class <- ifelse((df$`1957` - df$`1952`) < 0, "red", "green") # Plot p <- ggplot(df) + geom_segment(aes(x=1, xend=2, y=`1952`, yend=`1957`, col=class), size=.75, show.legend=f) + geom_vline(xintercept=1, linetype="dashed", size=.1) + geom_vline(xintercept=2, linetype="dashed", size=.1) + scale_color_manual(labels = c("up", "Down"), values = c("green"="#00ba38", "red"="#f8766d")) + # color of lines labs(x="", y="mean GdpPerCap") + # Axis labels xlim(.5, 2.5) + ylim(0,(1.1*(max(df$`1952`, df$`1957`)))) # X and Y axis limits # Add texts p <- p + geom_text(label=left_label, y=df$`1952`, x=rep(1, NROW(df)), hjust=1.1, size=3.5) p <- p + geom_text(label=right_label, y=df$`1957`, x=rep(2, NROW(df)), hjust=-0.1, size=3.5) p <- p + geom_text(label="time 1", x=1, y=1.1*(max(df$`1952`, df$`1957`)), hjust=1.2, size=5) # title p <- p + geom_text(label="time 2", x=2, y=1.1*(max(df$`1952`, df$`1957`)), hjust=-0.1, size=5) # title # Minify theme p + theme(panel.background = element_blank(), panel.grid = element_blank(), axis.ticks = element_blank(), axis.text.x = element_blank(), panel.border = element_blank(), plot.margin = unit(c(1,2,1,2), "cm"))

20 Custom Column Width Chart

21 Custom Column Width Chart

22 Region Gas Pop End point Start point North America Oceania Europe Africa Middle East Central America Asia

23 Calculate the End Point Require data : df<-data.frame(region=dataset$region,population= dataset$pop,width=dataset$gas) Calculate the End Point: df$w <- cumsum(df$width) #cumulative sums.

24 Calculate the Start Point df$wm <- df$w df$width End point width

25 Chart Label df$greengas<- with(df, wm + (w wm)/2)

26 Create your own R visualization inside Power BI

27 Create your Own Power BI Custom Visual using R

28 Create your Own Power BI Custom Visual using R

29 R Custom R visual-install nogejs 1- Download NodeJS 4.0+: 2- Command prompt : npm install -g powerbi-visualstools 3- in command prompt pbiviz (confirm it already installed) 4-

30 R Custom R visual-install Power BI visual tools npm install -g powerbi-visuals-tools

31 Create Custom Visual In document pbiviz package

32 R Custom R visual-create a rhtml Template pbiviz new samplerhtmlvisual -t rhtml

33 Change R codes source('./r_files/flatten_html.r') ############### Library Declarations ############### libraryrequireinstall("ggplot2"); libraryrequireinstall("plotly") #################################################### ################### Actual code #################### g = qplot(`petal.length`, data = iris, fill = `Species`, main = Sys.time()); #################################################### ############# Create and save widget ############### p = ggplotly(g); internalsavewidget(p, 'out.html'); ####################################################

34 Finally!

35 1- Download NodeJS 4.0+: 2- Command prompt : npm install -g powerbi-visualstools 3- in command prompt pbiviz 4-

36 R Custom R visual npm install -g powerbi-visuals-tools

37

38 User Predefined R Custom Visual in Power BI

39 Create your own R visualization inside Power BI using R codes Write your own R code inside Power Query R and Power BI Predefined R Custom Visual in Office Store Create your Own Power BI Custom Visual using R

40 Resources

Cortana Analytics : with Raspberry Pi and Weather Sensor

Cortana Analytics : with Raspberry Pi and Weather Sensor Cortana Analytics : with Raspberry Pi and Weather Sensor Leila Etaati (Microsoft MVP, PhD, Consultant, and Data science) #614 SQL Saturday South Island Leila Etaati Leila is Microsoft Data Platform MVP,

More information

Cortana Intelligence Suite; Where the Magic Happens

Cortana Intelligence Suite; Where the Magic Happens Cortana Intelligence Suite; Where the Magic Happens Reza Rad, Leila Etaati #509 Brisbane 2016 About Us Reza Rad Leila Etaati MVP BI Consultant and Trainer Author of Books Speaker in conferences; PASS Summit,

More information

Advance Analytics with Power BI and R

Advance Analytics with Power BI and R 1 P a g e PUBLISHED BY RADACAD Systems Limited http://radacad.com 89A Fancourt street, Meadowbank, Auckland 1072 New Zealand Copyright 2017 by RADACAD. All rights reserved. No part of the contents of this

More information

Managing and Understanding Data

Managing and Understanding Data Managing and Understanding Data A key early component of any machine learning project involves managing and understanding the data you have collected. Although you may not find it as gratifying as building

More information

Exploring and Understanding Data Using R.

Exploring and Understanding Data Using R. Exploring and Understanding Data Using R. Loading the data into an R data frame: variable

More information

Reza Rad. Power Query and M Beyond Limits

Reza Rad. Power Query and M Beyond Limits Reza Rad Power Query and M Beyond Limits Thanks to our Event Sponsors PASS Summit 2018 Registration Offer Continue the learning. Save $150 USD Register for PASS Summit and as a participant in SQLSaturday

More information

Create a bar graph that displays the data from the frequency table in Example 1. See the examples on p Does our graph look different?

Create a bar graph that displays the data from the frequency table in Example 1. See the examples on p Does our graph look different? A frequency table is a table with two columns, one for the categories and another for the number of times each category occurs. See Example 1 on p. 247. Create a bar graph that displays the data from the

More information

A Beginner s guide to Power BI Custom Visuals. Régis

A Beginner s guide to Power BI Custom Visuals. Régis A Beginner s guide to Power BI Custom Visuals Régis Baccaro @regbac About.me Régis Baccaro @regbac regis@baccaro.com http://theblobfarm.wordpress.com Founder and lead organizer of SQL Saturday Denmark

More information

# Call plot plot(gg)

# Call plot plot(gg) Most of the requirements related to look and feel can be achieved using the theme() function. It accepts a large number of arguments. Type?theme in the R console and see for yourself. # Setup options(scipen=999)

More information

The following presentation is based on the ggplot2 tutotial written by Prof. Jennifer Bryan.

The following presentation is based on the ggplot2 tutotial written by Prof. Jennifer Bryan. Graphics Agenda Grammer of Graphics Using ggplot2 The following presentation is based on the ggplot2 tutotial written by Prof. Jennifer Bryan. ggplot2 (wiki) ggplot2 is a data visualization package Created

More information

Importing and visualizing data in R. Day 3

Importing and visualizing data in R. Day 3 Importing and visualizing data in R Day 3 R data.frames Like pandas in python, R uses data frame (data.frame) object to support tabular data. These provide: Data input Row- and column-wise manipulation

More information

Chapter 5snow year.notebook March 15, 2018

Chapter 5snow year.notebook March 15, 2018 Chapter 5: Statistical Reasoning Section 5.1 Exploring Data Measures of central tendency (Mean, Median and Mode) attempt to describe a set of data by identifying the central position within a set of data

More information

A Journey to Power BI

A Journey to Power BI A Journey to Power BI A Guide to use Self-service BI Leila Etaati 28/02/2015 Leila Etaati Our Sponsors AN ACP GROUP COMPANY 2 28/02/2015 Leila Etaati About Leila Etaati 10 years experience in SQL server

More information

Week 4. Big Data Analytics - data.frame manipulation with dplyr

Week 4. Big Data Analytics - data.frame manipulation with dplyr Week 4. Big Data Analytics - data.frame manipulation with dplyr Hyeonsu B. Kang hyk149@eng.ucsd.edu April 2016 1 Dplyr In the last lecture we have seen how to index an individual cell in a data frame,

More information

Middle Years Data Analysis Display Methods

Middle Years Data Analysis Display Methods Middle Years Data Analysis Display Methods Double Bar Graph A double bar graph is an extension of a single bar graph. Any bar graph involves categories and counts of the number of people or things (frequency)

More information

M7D1.a: Formulate questions and collect data from a census of at least 30 objects and from samples of varying sizes.

M7D1.a: Formulate questions and collect data from a census of at least 30 objects and from samples of varying sizes. M7D1.a: Formulate questions and collect data from a census of at least 30 objects and from samples of varying sizes. Population: Census: Biased: Sample: The entire group of objects or individuals considered

More information

NCSS Statistical Software

NCSS Statistical Software Chapter 152 Introduction When analyzing data, you often need to study the characteristics of a single group of numbers, observations, or measurements. You might want to know the center and the spread about

More information

PREREQUISITES FOR EXAMPLES

PREREQUISITES FOR EXAMPLES 212-2007 SAS Information Map Studio and SAS Web Report Studio A Tutorial Angela Hall, Zencos Consulting LLC, Durham, NC Brian Miles, Zencos Consulting LLC, Durham, NC ABSTRACT Find out how to provide the

More information

MATH NATION SECTION 9 H.M.H. RESOURCES

MATH NATION SECTION 9 H.M.H. RESOURCES MATH NATION SECTION 9 H.M.H. RESOURCES SPECIAL NOTE: These resources were assembled to assist in student readiness for their upcoming Algebra 1 EOC. Although these resources have been compiled for your

More information

Univariate Statistics Summary

Univariate Statistics Summary Further Maths Univariate Statistics Summary Types of Data Data can be classified as categorical or numerical. Categorical data are observations or records that are arranged according to category. For example:

More information

XGBoost: The Art and Science of Communicating Machine Learning Algorithms. Amy Szadziewska, Peak 6 th February 2018

XGBoost: The Art and Science of Communicating Machine Learning Algorithms. Amy Szadziewska, Peak 6 th February 2018 XGBoost: The Art and Science of Communicating Machine Learning Algorithms Amy Szadziewska, Peak 6 th February 2018 Overview Why decision trees are interpretable but not good at predicting Why XGBoost is

More information

Ggplot2 QMMA. Emanuele Taufer. 2/19/2018 Ggplot2 (1)

Ggplot2 QMMA. Emanuele Taufer. 2/19/2018 Ggplot2 (1) Ggplot2 QMMA Emanuele Taufer file:///c:/users/emanuele.taufer/google%20drive/2%20corsi/5%20qmma%20-%20mim/0%20classes/1-4_ggplot2.html#(1) 1/27 Ggplot2 ggplot2 is a plotting system for R, based on the

More information

Data Science Template End-to-End ports Analysis

Data Science Template End-to-End ports Analysis Data Science Template End-to-End ports Analysis Graham Williams 15th September 2018 This template provides an example of a data science template for visualising data. Through visualisation we are able

More information

Chapter 3 - Displaying and Summarizing Quantitative Data

Chapter 3 - Displaying and Summarizing Quantitative Data Chapter 3 - Displaying and Summarizing Quantitative Data 3.1 Graphs for Quantitative Data (LABEL GRAPHS) August 25, 2014 Histogram (p. 44) - Graph that uses bars to represent different frequencies or relative

More information

OFFICE SERVICES AND SERVERS MVP Independent SharePoint Consultant, SharePoint MVP and Top 25 SharePoint Influencer Worldwide.

OFFICE SERVICES AND SERVERS MVP Independent SharePoint Consultant, SharePoint MVP and Top 25 SharePoint Influencer Worldwide. OFFICE SERVICES AND SERVERS MVP Independent SharePoint Consultant, SharePoint MVP and Top 25 SharePoint Influencer Worldwide. PLURALSIGHT AUTHOR Creating video content for one of the most popular and best

More information

Overview. Frequency Distributions. Chapter 2 Summarizing & Graphing Data. Descriptive Statistics. Inferential Statistics. Frequency Distribution

Overview. Frequency Distributions. Chapter 2 Summarizing & Graphing Data. Descriptive Statistics. Inferential Statistics. Frequency Distribution Chapter 2 Summarizing & Graphing Data Slide 1 Overview Descriptive Statistics Slide 2 A) Overview B) Frequency Distributions C) Visualizing Data summarize or describe the important characteristics of a

More information

Data Distribution. Objectives. Vocabulary 4/10/2017. Name: Pd: Organize data in tables and graphs. Choose a table or graph to display data.

Data Distribution. Objectives. Vocabulary 4/10/2017. Name: Pd: Organize data in tables and graphs. Choose a table or graph to display data. Organizing Data Write the equivalent percent. Data Distribution Name: Pd: 1. 2. 3. Find each value. 4. 20% of 360 5. 75% of 360 6. Organize data in tables and graphs. Choose a table or graph to display

More information

Descriptive Statistics, Standard Deviation and Standard Error

Descriptive Statistics, Standard Deviation and Standard Error AP Biology Calculations: Descriptive Statistics, Standard Deviation and Standard Error SBI4UP The Scientific Method & Experimental Design Scientific method is used to explore observations and answer questions.

More information

Name Date Types of Graphs and Creating Graphs Notes

Name Date Types of Graphs and Creating Graphs Notes Name Date Types of Graphs and Creating Graphs Notes Graphs are helpful visual representations of data. Different graphs display data in different ways. Some graphs show individual data, but many do not.

More information

Millburn Academy. Numeracy Across Learning. Name. Department

Millburn Academy. Numeracy Across Learning. Name. Department Millburn Academy Numeracy Across Learning Name Department Introduction Aim of this Booklet This booklet has been produced as the first step towards teaching numeracy across the curriculum in a consistent

More information

Chapter 2 Exploring Data with Graphs and Numerical Summaries

Chapter 2 Exploring Data with Graphs and Numerical Summaries Chapter 2 Exploring Data with Graphs and Numerical Summaries Constructing a Histogram on the TI-83 Suppose we have a small class with the following scores on a quiz: 4.5, 5, 5, 6, 6, 7, 8, 8, 8, 8, 9,

More information

The Average and SD in R

The Average and SD in R The Average and SD in R The Basics: mean() and sd() Calculating an average and standard deviation in R is straightforward. The mean() function calculates the average and the sd() function calculates the

More information

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies.

The first few questions on this worksheet will deal with measures of central tendency. These data types tell us where the center of the data set lies. Instructions: You are given the following data below these instructions. Your client (Courtney) wants you to statistically analyze the data to help her reach conclusions about how well she is teaching.

More information

The Economist rate card 2017 (GBP)

The Economist rate card 2017 (GBP) The Economist rate card 2017 (GBP) The Economist newspaper, Digital Editions app, Snapchat, and Global Business Review The Economist allows you to reach our influential audience through print and our award

More information

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1

Lecture Slides. Elementary Statistics Tenth Edition. by Mario F. Triola. and the Triola Statistics Series. Slide 1 Lecture Slides Elementary Statistics Tenth Edition and the Triola Statistics Series by Mario F. Triola Slide 1 Chapter 2 Summarizing and Graphing Data 2-1 Overview 2-2 Frequency Distributions 2-3 Histograms

More information

TMTH 3360 NOTES ON COMMON GRAPHS AND CHARTS

TMTH 3360 NOTES ON COMMON GRAPHS AND CHARTS To Describe Data, consider: Symmetry Skewness TMTH 3360 NOTES ON COMMON GRAPHS AND CHARTS Unimodal or bimodal or uniform Extreme values Range of Values and mid-range Most frequently occurring values In

More information

DeltaV History Analysis

DeltaV History Analysis January 2013 Page 1 DeltaV History Analysis provides web-based viewing of DeltaV historical data. DeltaV history data available anywhere Integrated batch, continuous and event data Easy-to-use data search

More information

Exercise 1: Introduction to Stata

Exercise 1: Introduction to Stata Exercise 1: Introduction to Stata New Stata Commands use describe summarize stem graph box histogram log on, off exit New Stata Commands Downloading Data from the Web I recommend that you use Internet

More information

3.2 Measures of Central Tendency Lesson MDM4U Jensen

3.2 Measures of Central Tendency Lesson MDM4U Jensen 3.2 Measures of Central Tendency Lesson MDM4U Jensen - In this section, you will learn how to describe a set of numeric data using a single value - The value you calculate will describe the of the set

More information

The Economist rate card 2017 (USD)

The Economist rate card 2017 (USD) The Economist rate card 2017 (USD) The Economist newspaper, Digital Editions app, Snapchat, and Global Business Review The Economist allows you to reach our influential audience through print and our award

More information

Manohar Punna. Azure Database Migration Choosing the Right Tier

Manohar Punna. Azure Database Migration Choosing the Right Tier Manohar Punna Azure Database Migration Choosing the Right Tier Thank you to our sponsors: Evaluations: Please complete the evaluation forms for each session you attend. You received these in your welcome

More information

Combo Charts. Chapter 145. Introduction. Data Structure. Procedure Options

Combo Charts. Chapter 145. Introduction. Data Structure. Procedure Options Chapter 145 Introduction When analyzing data, you often need to study the characteristics of a single group of numbers, observations, or measurements. You might want to know the center and the spread about

More information

Graphing Bivariate Relationships

Graphing Bivariate Relationships Graphing Bivariate Relationships Overview To fully explore the relationship between two variables both summary statistics and visualizations are important. For this assignment you will describe the relationship

More information

Processing, representing and interpreting data

Processing, representing and interpreting data Processing, representing and interpreting data 21 CHAPTER 2.1 A head CHAPTER 17 21.1 polygons A diagram can be drawn from grouped discrete data. A diagram looks the same as a bar chart except that the

More information

IHS Engineering Workbench 1.3

IHS Engineering Workbench 1.3 IHS Engineering Workbench 1.3 Important enhancements and updates in the latest release of the IHS Markit solution for technical knowledge discovery and management Introducing expanded capabilities for

More information

LESSON 3: CENTRAL TENDENCY

LESSON 3: CENTRAL TENDENCY LESSON 3: CENTRAL TENDENCY Outline Arithmetic mean, median and mode Ungrouped data Grouped data Percentiles, fractiles, and quartiles Ungrouped data Grouped data 1 MEAN Mean is defined as follows: Sum

More information

IHS Connect CONSTRUCTION 2015 IHS. ALL RIGHTS RESERVED.

IHS Connect CONSTRUCTION 2015 IHS. ALL RIGHTS RESERVED. IHS Connect CONSTRUCTION IHS Connect is an online market and business intelligence platform enabling faster, smarter, and more efficient access to world renowned information and insight from IHS. A single

More information

Date Lesson TOPIC HOMEWORK. Displaying Data WS 6.1. Measures of Central Tendency WS 6.2. Common Distributions WS 6.6. Outliers WS 6.

Date Lesson TOPIC HOMEWORK. Displaying Data WS 6.1. Measures of Central Tendency WS 6.2. Common Distributions WS 6.6. Outliers WS 6. UNIT 6 ONE VARIABLE STATISTICS Date Lesson TOPIC HOMEWORK 6.1 3.3 6.2 3.4 Displaying Data WS 6.1 Measures of Central Tendency WS 6.2 6.3 6.4 3.5 6.5 3.5 Grouped Data Central Tendency Measures of Spread

More information

Type of graph: Explain why you picked this type of graph. Temperature (C) of product formed per minute)

Type of graph: Explain why you picked this type of graph. Temperature (C) of product formed per minute) Name: Graphing Raw Data Key Idea: Unprocessed data is called raw data. A set of data is often processed or transformed to make it easier to understand and to identify important features. Constructing Tables

More information

Drag and Drop Responsive Template Builder

Drag and Drop Responsive Template Builder Drag and Drop Responsive Template Builder TABLE OF CONTENTS 1 INTRODUCTION... 3 2 INSTRUCTIONS... 3 3 CONTACT... 12 2 1 INTRODUCTION The new drag and drop mobile responsive template feature allows you

More information

ScholarOne Manuscripts. Publisher Level Reporting Guide

ScholarOne Manuscripts. Publisher Level Reporting Guide ScholarOne Manuscripts Publisher Level Reporting Guide 1-May-2018 Clarivate Analytics ScholarOne Manuscripts Publisher Level Reporting Guide Page i TABLE OF CONTENTS PUBLISHER-LEVEL REPORTING OVERVIEW...

More information

POWER BI DEVELOPER BOOTCAMP

POWER BI DEVELOPER BOOTCAMP POWER BI DEVELOPER BOOTCAMP Course Duration: 4 Days Overview The Power BI Developer Bootcamp is an intensive 4-day training course with hands-on labs designed to get professional software developers up

More information

IHS Connect COMMODITY PRICE WATCH 2015 IHS. ALL RIGHTS RESERVED.

IHS Connect COMMODITY PRICE WATCH 2015 IHS. ALL RIGHTS RESERVED. IHS Connect COMMODITY PRICE WATCH IHS Connect is an online market and business intelligence platform enabling faster, smarter, and more efficient access to world renowned information and insight from IHS.

More information

Use of GeoGebra in teaching about central tendency and spread variability

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

More information

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

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

More information

Martin Cairney SPLIT, MERGE & ELIMINATE. SQL Saturday #572 : Oregon : 22 nd October, 2016

Martin Cairney SPLIT, MERGE & ELIMINATE. SQL Saturday #572 : Oregon : 22 nd October, 2016 Martin Cairney SPLIT, MERGE & ELIMINATE AN INTRODUCTION TO PARTITIONING SQL Saturday #572 : Oregon : 22 nd October, 2016 Housekeeping Mobile Phones please set to stun during the session Connect with the

More information

Learning Log Title: CHAPTER 8: STATISTICS AND MULTIPLICATION EQUATIONS. Date: Lesson: Chapter 8: Statistics and Multiplication Equations

Learning Log Title: CHAPTER 8: STATISTICS AND MULTIPLICATION EQUATIONS. Date: Lesson: Chapter 8: Statistics and Multiplication Equations Chapter 8: Statistics and Multiplication Equations CHAPTER 8: STATISTICS AND MULTIPLICATION EQUATIONS Date: Lesson: Learning Log Title: Date: Lesson: Learning Log Title: Chapter 8: Statistics and Multiplication

More information

SW Registration Facility. SW 6000 Conference Management Software, Version 6.3

SW Registration Facility. SW 6000 Conference Management Software, Version 6.3 , Version 6.3 SW 6000 Registration Facility @2015 Shure Incorporated SW 6000 Registration Facility ver 6.3.docx Table of Contents Table of Contents... 2 1 Introduction... 3 2 System applications and abbreviations...

More information

Web RCS Keyboard Shortcuts. You can also customize existing keyboard shortcuts.

Web RCS Keyboard Shortcuts. You can also customize existing keyboard shortcuts. Web RCS Keyboard Shortcuts You can also customize existing keyboard shortcuts. TAKE Take all screens Take current screen(s) Take S1... S8 Take CUT Take PAUSE TBar up TBar down LIVE SEQUENCER Play Pause

More information

Chapter 2 Describing, Exploring, and Comparing Data

Chapter 2 Describing, Exploring, and Comparing Data Slide 1 Chapter 2 Describing, Exploring, and Comparing Data Slide 2 2-1 Overview 2-2 Frequency Distributions 2-3 Visualizing Data 2-4 Measures of Center 2-5 Measures of Variation 2-6 Measures of Relative

More information

Math Tech IIII, Sep 14

Math Tech IIII, Sep 14 Math Tech IIII, Sep 14 Variations on the Frequency Histogram 2 Book Sections: 2.3 Essential Questions: What are the methods for displaying data, and how can I build them? What are variations of the frequency

More information

Toolkit for DAX Optimization

Toolkit for DAX Optimization Toolkit for DAX Optimization Marco Russo marco@sqlbi.com SQL Saturday #464, Melbourne 20 th February 2016 Housekeeping Mobile Phones please set to stun during sessions Evaluations complete online to be

More information

Data Handling: Import, Cleaning and Visualisation

Data Handling: Import, Cleaning and Visualisation Data Handling: Import, Cleaning and Visualisation 1 Data Display Lecture 11: Visualisation and Dynamic Documents Prof. Dr. Ulrich Matter (University of St. Gallen) 13/12/18 In the last part of a data pipeline

More information

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD

Azure Data Factory VS. SSIS. Reza Rad, Consultant, RADACAD Azure Data Factory VS. SSIS Reza Rad, Consultant, RADACAD 2 Please silence cell phones Explore Everything PASS Has to Offer FREE ONLINE WEBINAR EVENTS FREE 1-DAY LOCAL TRAINING EVENTS VOLUNTEERING OPPORTUNITIES

More information

MATH11400 Statistics Homepage

MATH11400 Statistics Homepage MATH11400 Statistics 1 2010 11 Homepage http://www.stats.bris.ac.uk/%7emapjg/teach/stats1/ 1.1 A Framework for Statistical Problems Many statistical problems can be described by a simple framework in which

More information

Satellite-Based Earth Observation (EO), 6th Edition

Satellite-Based Earth Observation (EO), 6th Edition Satellite-Based Earth Observation (EO), 6th Edition Report Brief - October 2014 www.nsr.com 2013 NSR Report Description The dynamic market for satellite-based imagery has been driven to new heights with

More information

15 Wyner Statistics Fall 2013

15 Wyner Statistics Fall 2013 15 Wyner Statistics Fall 2013 CHAPTER THREE: CENTRAL TENDENCY AND VARIATION Summary, Terms, and Objectives The two most important aspects of a numerical data set are its central tendencies and its variation.

More information

STA 570 Spring Lecture 5 Tuesday, Feb 1

STA 570 Spring Lecture 5 Tuesday, Feb 1 STA 570 Spring 2011 Lecture 5 Tuesday, Feb 1 Descriptive Statistics Summarizing Univariate Data o Standard Deviation, Empirical Rule, IQR o Boxplots Summarizing Bivariate Data o Contingency Tables o Row

More information

CMPSC 390 Visual Computing Spring 2014 Bob Roos Notes on R Graphs, Part 2

CMPSC 390 Visual Computing Spring 2014 Bob Roos   Notes on R Graphs, Part 2 Notes on R Graphs, Part 2 1 CMPSC 390 Visual Computing Spring 2014 Bob Roos http://cs.allegheny.edu/~rroos/cs390s2014 Notes on R Graphs, Part 2 Bar Graphs in R So far we have looked at basic (x, y) plots

More information

NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA

NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA NOTES TO CONSIDER BEFORE ATTEMPTING EX 1A TYPES OF DATA Statistics is concerned with scientific methods of collecting, recording, organising, summarising, presenting and analysing data from which future

More information

CHAPTER-13. Mining Class Comparisons: Discrimination between DifferentClasses: 13.4 Class Description: Presentation of Both Characterization and

CHAPTER-13. Mining Class Comparisons: Discrimination between DifferentClasses: 13.4 Class Description: Presentation of Both Characterization and CHAPTER-13 Mining Class Comparisons: Discrimination between DifferentClasses: 13.1 Introduction 13.2 Class Comparison Methods and Implementation 13.3 Presentation of Class Comparison Descriptions 13.4

More information

Prob and Stats, Sep 4

Prob and Stats, Sep 4 Prob and Stats, Sep 4 Variations on the Frequency Histogram Book Sections: N/A Essential Questions: What are the methods for displaying data, and how can I build them? What are variations of the frequency

More information

Package cowplot. March 6, 2016

Package cowplot. March 6, 2016 Package cowplot March 6, 2016 Title Streamlined Plot Theme and Plot Annotations for 'ggplot2' Version 0.6.1 Some helpful extensions and modifications to the 'ggplot2' library. In particular, this package

More information

Ad Hoc Reporting with Report Builder

Ad Hoc Reporting with Report Builder BI316 Ad Hoc Reporting with Report Builder David Lean Principal Technology Specialist Microsoft Australia Visit www.sqlserver.com.au Monthly Meetings + Great info + Great Contacts + Pizza & Beer It s Free!!!

More information

The Energy Data Management Center & Database Structure

The Energy Data Management Center & Database Structure The Energy Data Management Center & Database Structure Presentation and Exercises Energy Statistics Training Paris, Oct. 14 18, 2013 Ryszard Pospiech Energy Data Manager Table of Contents 1. Database overview

More information

boxplot - A graphic way of showing a summary of data using the median, quartiles, and extremes of the data.

boxplot - A graphic way of showing a summary of data using the median, quartiles, and extremes of the data. Learning Target Create scatterplots and identify whether there is a relationship between two sets of data. Draw a line of best fit and use it to make predictions. Focus Questions How can I organize data?

More information

Indira Bandari. Predictive Analytics using R in SQL Server

Indira Bandari. Predictive Analytics using R in SQL Server Indira Bandari Predictive Analytics using R in SQL Server Agenda What is Predictive Analytics? Analytics vs. Predictive Analytics Benefits of using R Predictive Analytics Life Cycle Demo Indira Bandari

More information

ScholarOne Manuscripts. COGNOS Reports User Guide

ScholarOne Manuscripts. COGNOS Reports User Guide ScholarOne Manuscripts COGNOS Reports User Guide 1-May-2018 Clarivate Analytics ScholarOne Manuscripts COGNOS Reports User Guide Page i TABLE OF CONTENTS USE GET HELP NOW & FAQS... 1 SYSTEM REQUIREMENTS...

More information

Beautiful plotting in R: A ggplot2cheatsheet

Beautiful plotting in R: A ggplot2cheatsheet Technical Tidbits From Spatial Analysis & Data Science Beautiful plotting in R: A ggplot2cheatsheet Posted on August 4, 2014 by zev@zevross.com 9 Comments Even the most experienced R users need help creating

More information

Name Geometry Intro to Stats. Find the mean, median, and mode of the data set. 1. 1,6,3,9,6,8,4,4,4. Mean = Median = Mode = 2.

Name Geometry Intro to Stats. Find the mean, median, and mode of the data set. 1. 1,6,3,9,6,8,4,4,4. Mean = Median = Mode = 2. Name Geometry Intro to Stats Statistics are numerical values used to summarize and compare sets of data. Two important types of statistics are measures of central tendency and measures of dispersion. A

More information

Measures of Central Tendency. A measure of central tendency is a value used to represent the typical or average value in a data set.

Measures of Central Tendency. A measure of central tendency is a value used to represent the typical or average value in a data set. Measures of Central Tendency A measure of central tendency is a value used to represent the typical or average value in a data set. The Mean the sum of all data values divided by the number of values in

More information

Power Query For Power Bi Excel Jansbooksz

Power Query For Power Bi Excel Jansbooksz POWER QUERY FOR POWER BI EXCEL JANSBOOKSZ PDF - Are you looking for power query for power bi excel jansbooksz Books? Now, you will be happy that at this time power query for power bi excel jansbooksz PDF

More information

Quantitative - One Population

Quantitative - One Population Quantitative - One Population The Quantitative One Population VISA procedures allow the user to perform descriptive and inferential procedures for problems involving one population with quantitative (interval)

More information

ENERGY WEB ATLAS WEB APPLICATION USER GUIDE. ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1

ENERGY WEB ATLAS WEB APPLICATION USER GUIDE. ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1 ENERGY WEB ATLAS WEB APPLICATION USER GUIDE ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1 WELCOME Welcome to the Energy Web Atlas User Guide. Choose

More information

Smartphones Wearables Smart home

Smartphones Wearables Smart home Smartphones Wearables Smart home GfK s latest insights into the digital world 360 AI GfK Point of Sales Tracking, GfK Forecasting 1 The smartphone market 2 Sales for Digital World* products amounted to

More information

Volume Profile Indicator Pro Version

Volume Profile Indicator Pro Version Volume Profile Indicator Pro Version Introduction... 2 Getting Started... 3 Choose your chart history... 3 Selecting Volume Profile and Volume Profile Filter in Chart Indicator window... 3 Overview of

More information

SQL Server Windowing Functions

SQL Server Windowing Functions SQL Server Windowing Functions Enrique Catalá Bañuls Mentor, SolidQ MAP 2012 Microsoft Technical Ranger Microsoft Certified Trainer ecatala@solidq.com Twitter: @enriquecatala Enrique Catalá Bañuls Computer

More information

2.1: Frequency Distributions and Their Graphs

2.1: Frequency Distributions and Their Graphs 2.1: Frequency Distributions and Their Graphs Frequency Distribution - way to display data that has many entries - table that shows classes or intervals of data entries and the number of entries in each

More information

IHS Connect DATA BROWSER 2015 IHS. ALL RIGHTS RESERVED.

IHS Connect DATA BROWSER 2015 IHS. ALL RIGHTS RESERVED. IHS Connect DATA BROWSER IHS Connect is an online market and business intelligence platform enabling faster, smarter, and more efficient access to world renowned information and insight from IHS. A single

More information

1. To condense data in a single value. 2. To facilitate comparisons between data.

1. To condense data in a single value. 2. To facilitate comparisons between data. The main objectives 1. To condense data in a single value. 2. To facilitate comparisons between data. Measures :- Locational (positional ) average Partition values Median Quartiles Deciles Percentiles

More information

MATH 117 Statistical Methods for Management I Chapter Two

MATH 117 Statistical Methods for Management I Chapter Two Jubail University College MATH 117 Statistical Methods for Management I Chapter Two There are a wide variety of ways to summarize, organize, and present data: I. Tables 1. Distribution Table (Categorical

More information

Office of Instructional Technology

Office of Instructional Technology Office of Instructional Technology Microsoft Excel 2016 Contact Information: 718-254-8565 ITEC@citytech.cuny.edu Contents Introduction to Excel 2016... 3 Opening Excel 2016... 3 Office 2016 Ribbon... 3

More information

Chapter 5. Understanding and Comparing Distributions. Copyright 2012, 2008, 2005 Pearson Education, Inc.

Chapter 5. Understanding and Comparing Distributions. Copyright 2012, 2008, 2005 Pearson Education, Inc. Chapter 5 Understanding and Comparing Distributions The Big Picture We can answer much more interesting questions about variables when we compare distributions for different groups. Below is a histogram

More information

An Introduction to R Graphics

An Introduction to R Graphics An Introduction to R Graphics PnP Group Seminar 25 th April 2012 Why use R for graphics? Fast data exploration Easy automation and reproducibility Create publication quality figures Customisation of almost

More information

Chapter 5. Understanding and Comparing Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc.

Chapter 5. Understanding and Comparing Distributions. Copyright 2010, 2007, 2004 Pearson Education, Inc. Chapter 5 Understanding and Comparing Distributions The Big Picture We can answer much more interesting questions about variables when we compare distributions for different groups. Below is a histogram

More information

8 Organizing and Displaying

8 Organizing and Displaying CHAPTER 8 Organizing and Displaying Data for Comparison Chapter Outline 8.1 BASIC GRAPH TYPES 8.2 DOUBLE LINE GRAPHS 8.3 TWO-SIDED STEM-AND-LEAF PLOTS 8.4 DOUBLE BAR GRAPHS 8.5 DOUBLE BOX-AND-WHISKER PLOTS

More information

Making R Graphs, For People Who Don t Want To Learn R

Making R Graphs, For People Who Don t Want To Learn R Making R Graphs, For People Who Don t Want To Learn R Richard Blissett I get it. You already know one statistical programming language, and the idea of having to learn another one just to make pretty pictures

More information

ENERGY WEB ATLAS WEB APPLICATION USER GUIDE. ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1

ENERGY WEB ATLAS WEB APPLICATION USER GUIDE. ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1 ENERGY WEB ATLAS WEB APPLICATION USER GUIDE ENERGY WEB ATLAS All materials subject to strictly enforced copyright laws Gulf Publishing Company 1 WELCOME Welcome to the Energy Web Atlas User Guide. Choose

More information

Gauge Chart Components Html5 Javascript Libraries

Gauge Chart Components Html5 Javascript Libraries Gauge Chart Components Html5 Javascript Libraries 1 / 6 2 / 6 3 / 6 Gauge Chart Components Html5 Javascript Syncfusion JavaScript UI controls offer more than 55+ cross-platform, responsive, and lightweight

More information

10.4 Measures of Central Tendency and Variation

10.4 Measures of Central Tendency and Variation 10.4 Measures of Central Tendency and Variation Mode-->The number that occurs most frequently; there can be more than one mode ; if each number appears equally often, then there is no mode at all. (mode

More information