SlideShare a Scribd company logo
1 of 28
Download to read offline
GRAPHICAL ANALYSIS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 1
CREDITS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 2
MRS sir
Google
CONTENT
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 3
 Introduction
 Graphical Analysis
 Box-whisker plots
 Scatter plots
 Pairs Plots
 Line Charts
 Pie charts
 Cleveland Dot Charts
 Bar Charts
 Copy Graphics to other Applications
INTRODUCTION-GRAPHICAL ANALYSIS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 4
Graphical Analysis is a tool for science students to collect,
graph, and analyze data.
The primary advantages of graphical representation of data are:
Facilitates and improves learning:
graphics make data easy to understand
and eliminate language and literacy barriers.
Understanding content: visuals are more effective than text in
human understanding.
BOX-WHISKER PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 5
BOX-WHISKER PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 6
SCATTER PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 7
Scatterplots show many points plotted in the Cartesian
plane.
Each point represents the values of two variables.
One variable is chosen in the horizontal axis and another in
the vertical axis.
The simple scatterplot is created using the plot() function.
SCATTER PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 8
SCATTER PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 9
PAIRS PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 10
The pairs plot is a grid of scatterplots.
showing the bivariate relationships between all pairs of
variables in a multivariate dataset.
PAIRS PLOTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 11
LINE CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 12
A line chart is a graph that connects a series of points by
drawing line segments between them.
These points are ordered in one of their coordinate (usually
the x-coordinate) value.
Line charts are usually used in identifying the trends in data.
The plot() function in R is used to create the line graph
LINE CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 13
PIE CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 14
R Programming language has numerous libraries to create charts and
graphs.
A pie-chart is a representation of values as slices of a circle with
different colors.
The slices are labeled and the numbers corresponding to each slice is
also represented in the chart.
In R the pie chart is created using the pie() function which takes
positive numbers as a vector input.
The additional parameters are used to control labels, color, title etc
PIE CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 15
PIE CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 16
CLEVELAND DOT CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 17
dotchart() function in R Language is used to create a
dot chart of the specified data.
A dot chart is defined as a plot which is used to draw a
Cleveland dot plot.
CLEVELAND DOT CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 18
CLEVELAND DOT CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 19
BAR CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 20
A bar chart represents data in rectangular bars with length
of the bar proportional to the value of the variable.
R uses the function barplot() to create bar charts.
R can draw both vertical and Horizontal bars in the bar
chart.
In bar chart each of the bars can be given different colors
BAR CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 21
BAR CHARTS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 22
COPY GRAPHICS TO OTHER APPLICATIONS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 23
Plots panel –>
Export –> Save
as Image or Save
as PDF
COPY GRAPHICS TO OTHER APPLICATIONS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 24
It's also possible to save the graph using R codes as
follow:
Specify files to save your image using a function such as
jpeg(), png(), svg() or pdf().
Additional argument indicating the width and the height of
the image can be also used. Create the plot.
COPY GRAPHICS TO OTHER APPLICATIONS
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 25
SUMMARY
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 26
 Introduction
 Graphical Analysis
 Box-whisker plots
 Scatter plots
 Pairs Plots
 Line Charts
 Pie charts
 Cleveland Dot Charts
 Bar Charts
 Copy Graphics to other Applications
ANY CLARIFICATIONS?
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 27
THANK YOU
2/20/2021
VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 28

More Related Content

What's hot

Computer graphics godse (technical publications)
Computer graphics  godse (technical publications)Computer graphics  godse (technical publications)
Computer graphics godse (technical publications)Manaswi Sharma
 
Introduction to XAML and WPF
Introduction to XAML and WPFIntroduction to XAML and WPF
Introduction to XAML and WPFDoncho Minkov
 
A Presentation on Development of a Simple Calculator
A Presentation on Development of a Simple CalculatorA Presentation on Development of a Simple Calculator
A Presentation on Development of a Simple CalculatorTheophilus Omoregbee
 

What's hot (8)

Flutter
FlutterFlutter
Flutter
 
Computer graphics godse (technical publications)
Computer graphics  godse (technical publications)Computer graphics  godse (technical publications)
Computer graphics godse (technical publications)
 
Borland C++Builder 入門課程
Borland C++Builder 入門課程Borland C++Builder 入門課程
Borland C++Builder 入門課程
 
Introduction to XAML and WPF
Introduction to XAML and WPFIntroduction to XAML and WPF
Introduction to XAML and WPF
 
Introduction To C#
Introduction To C#Introduction To C#
Introduction To C#
 
Road Object Detection
Road Object DetectionRoad Object Detection
Road Object Detection
 
A Presentation on Development of a Simple Calculator
A Presentation on Development of a Simple CalculatorA Presentation on Development of a Simple Calculator
A Presentation on Development of a Simple Calculator
 
Introduction to c#
Introduction to c#Introduction to c#
Introduction to c#
 

Similar to R Programming Unit 3 part-1

presentation on solid manipulation in computer aided design
presentation on solid manipulation in computer aided designpresentation on solid manipulation in computer aided design
presentation on solid manipulation in computer aided designRakshit vadi
 
Computer Networks Unit 1 part-2
Computer Networks Unit 1 part-2Computer Networks Unit 1 part-2
Computer Networks Unit 1 part-2Vikram Nandini
 
Data Acquisition Systems presentation
Data Acquisition  Systems presentationData Acquisition  Systems presentation
Data Acquisition Systems presentationADUBUABENG
 
Pengenalankepadaautocad
PengenalankepadaautocadPengenalankepadaautocad
Pengenalankepadaautocadwkhairil80
 
3D Modelling and Detailing in Tekla Structures
3D Modelling and Detailing in Tekla Structures3D Modelling and Detailing in Tekla Structures
3D Modelling and Detailing in Tekla StructuresIRJET Journal
 
Pengenalan kepada autocad
Pengenalan kepada autocadPengenalan kepada autocad
Pengenalan kepada autocadmohdfadil112279
 
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...Comparative Study on Analysis of G+10 Regular Residential Building subjected ...
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...IRJET Journal
 
CEM and Radar Cross Section @ Zeus Numerix
CEM and Radar Cross Section @ Zeus NumerixCEM and Radar Cross Section @ Zeus Numerix
CEM and Radar Cross Section @ Zeus NumerixAbhishek Jain
 
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONDSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONimman gwu
 
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3D
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3DRURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3D
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3DIRJET Journal
 
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...IRJET Journal
 
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORYCS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORYRadha Maruthiyan
 
PCB DESIGN USING KICAD || SHASHANK M GOWDA
PCB DESIGN USING KICAD || SHASHANK M GOWDA  PCB DESIGN USING KICAD || SHASHANK M GOWDA
PCB DESIGN USING KICAD || SHASHANK M GOWDA Shashank M Gowda
 
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRAN
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRANComputer-Aided Design of Raft Foundation using Excel VBA and FORTRAN
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRANIRJET Journal
 
Algebraic methods for design QC-LDPC codes
Algebraic methods for design QC-LDPC codesAlgebraic methods for design QC-LDPC codes
Algebraic methods for design QC-LDPC codesUsatyuk Vasiliy
 
09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstractbutest
 
09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstractbutest
 

Similar to R Programming Unit 3 part-1 (20)

presentation on solid manipulation in computer aided design
presentation on solid manipulation in computer aided designpresentation on solid manipulation in computer aided design
presentation on solid manipulation in computer aided design
 
Computer Networks Unit 1 part-2
Computer Networks Unit 1 part-2Computer Networks Unit 1 part-2
Computer Networks Unit 1 part-2
 
Data Acquisition Systems presentation
Data Acquisition  Systems presentationData Acquisition  Systems presentation
Data Acquisition Systems presentation
 
Unit 1 part-1
Unit 1 part-1Unit 1 part-1
Unit 1 part-1
 
Pengenalankepadaautocad
PengenalankepadaautocadPengenalankepadaautocad
Pengenalankepadaautocad
 
3D Modelling and Detailing in Tekla Structures
3D Modelling and Detailing in Tekla Structures3D Modelling and Detailing in Tekla Structures
3D Modelling and Detailing in Tekla Structures
 
Pengenalan kepada autocad
Pengenalan kepada autocadPengenalan kepada autocad
Pengenalan kepada autocad
 
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...Comparative Study on Analysis of G+10 Regular Residential Building subjected ...
Comparative Study on Analysis of G+10 Regular Residential Building subjected ...
 
CEM and Radar Cross Section @ Zeus Numerix
CEM and Radar Cross Section @ Zeus NumerixCEM and Radar Cross Section @ Zeus Numerix
CEM and Radar Cross Section @ Zeus Numerix
 
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATIONDSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
DSCE_GWU_3D PRINTING TYPES APPLICATIONS APPLICATION
 
My Quantum Journey
My Quantum JourneyMy Quantum Journey
My Quantum Journey
 
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3D
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3DRURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3D
RURAL ROAD DESIGN ENHANCEMENT USING CIVIL 3D
 
PCA and SVD in brief
PCA and SVD in briefPCA and SVD in brief
PCA and SVD in brief
 
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...
IRJET- Design and HW/SW Implementation of a Nonlinear Interpolator for Border...
 
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORYCS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
CS6311- PROGRAMMING & DATA STRUCTURE II LABORATORY
 
PCB DESIGN USING KICAD || SHASHANK M GOWDA
PCB DESIGN USING KICAD || SHASHANK M GOWDA  PCB DESIGN USING KICAD || SHASHANK M GOWDA
PCB DESIGN USING KICAD || SHASHANK M GOWDA
 
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRAN
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRANComputer-Aided Design of Raft Foundation using Excel VBA and FORTRAN
Computer-Aided Design of Raft Foundation using Excel VBA and FORTRAN
 
Algebraic methods for design QC-LDPC codes
Algebraic methods for design QC-LDPC codesAlgebraic methods for design QC-LDPC codes
Algebraic methods for design QC-LDPC codes
 
09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract
 
09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract09_KHIN AYE MU.docx - Abstract
09_KHIN AYE MU.docx - Abstract
 

More from Vikram Nandini

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarVikram Nandini
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and CommandsVikram Nandini
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsVikram Nandini
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II PartVikram Nandini
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online ComponentsVikram Nandini
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural NetworksVikram Nandini
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected DevicesVikram Nandini
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoTVikram Nandini
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber SecurityVikram Nandini
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfVikram Nandini
 
Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web TechnologiesVikram Nandini
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style SheetsVikram Nandini
 

More from Vikram Nandini (20)

IoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold BarIoT: From Copper strip to Gold Bar
IoT: From Copper strip to Gold Bar
 
Design Patterns
Design PatternsDesign Patterns
Design Patterns
 
Linux File Trees and Commands
Linux File Trees and CommandsLinux File Trees and Commands
Linux File Trees and Commands
 
Introduction to Linux & Basic Commands
Introduction to Linux & Basic CommandsIntroduction to Linux & Basic Commands
Introduction to Linux & Basic Commands
 
INTRODUCTION to OOAD
INTRODUCTION to OOADINTRODUCTION to OOAD
INTRODUCTION to OOAD
 
Ethics
EthicsEthics
Ethics
 
Manufacturing - II Part
Manufacturing - II PartManufacturing - II Part
Manufacturing - II Part
 
Manufacturing
ManufacturingManufacturing
Manufacturing
 
Business Models
Business ModelsBusiness Models
Business Models
 
Prototyping Online Components
Prototyping Online ComponentsPrototyping Online Components
Prototyping Online Components
 
Artificial Neural Networks
Artificial Neural NetworksArtificial Neural Networks
Artificial Neural Networks
 
IoT-Prototyping
IoT-PrototypingIoT-Prototyping
IoT-Prototyping
 
Design Principles for Connected Devices
Design Principles for Connected DevicesDesign Principles for Connected Devices
Design Principles for Connected Devices
 
Introduction to IoT
Introduction to IoTIntroduction to IoT
Introduction to IoT
 
Embedded decices
Embedded decicesEmbedded decices
Embedded decices
 
Communication in the IoT
Communication in the IoTCommunication in the IoT
Communication in the IoT
 
Introduction to Cyber Security
Introduction to Cyber SecurityIntroduction to Cyber Security
Introduction to Cyber Security
 
cloud computing UNIT-2.pdf
cloud computing UNIT-2.pdfcloud computing UNIT-2.pdf
cloud computing UNIT-2.pdf
 
Introduction to Web Technologies
Introduction to Web TechnologiesIntroduction to Web Technologies
Introduction to Web Technologies
 
Cascading Style Sheets
Cascading Style SheetsCascading Style Sheets
Cascading Style Sheets
 

Recently uploaded

Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Jisc
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.christianmathematics
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxVishalSingh1417
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsKarakKing
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdfssuserdda66b
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and ModificationsMJDuyan
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxJisc
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentationcamerronhm
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxEsquimalt MFRC
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structuredhanjurrannsibayan2
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.MaryamAhmad92
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...christianmathematics
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfSherif Taha
 

Recently uploaded (20)

Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)Accessible Digital Futures project (20/03/2024)
Accessible Digital Futures project (20/03/2024)
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdfVishram Singh - Textbook of Anatomy  Upper Limb and Thorax.. Volume 1 (1).pdf
Vishram Singh - Textbook of Anatomy Upper Limb and Thorax.. Volume 1 (1).pdf
 
Understanding Accommodations and Modifications
Understanding  Accommodations and ModificationsUnderstanding  Accommodations and Modifications
Understanding Accommodations and Modifications
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
Towards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptxTowards a code of practice for AI in AT.pptx
Towards a code of practice for AI in AT.pptx
 
SOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning PresentationSOC 101 Demonstration of Learning Presentation
SOC 101 Demonstration of Learning Presentation
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptxHMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
HMCS Max Bernays Pre-Deployment Brief (May 2024).pptx
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Single or Multiple melodic lines structure
Single or Multiple melodic lines structureSingle or Multiple melodic lines structure
Single or Multiple melodic lines structure
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
Explore beautiful and ugly buildings. Mathematics helps us create beautiful d...
 
Food safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdfFood safety_Challenges food safety laboratories_.pdf
Food safety_Challenges food safety laboratories_.pdf
 

R Programming Unit 3 part-1

  • 1. GRAPHICAL ANALYSIS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 1
  • 2. CREDITS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 2 MRS sir Google
  • 3. CONTENT 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 3  Introduction  Graphical Analysis  Box-whisker plots  Scatter plots  Pairs Plots  Line Charts  Pie charts  Cleveland Dot Charts  Bar Charts  Copy Graphics to other Applications
  • 4. INTRODUCTION-GRAPHICAL ANALYSIS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 4 Graphical Analysis is a tool for science students to collect, graph, and analyze data. The primary advantages of graphical representation of data are: Facilitates and improves learning: graphics make data easy to understand and eliminate language and literacy barriers. Understanding content: visuals are more effective than text in human understanding.
  • 5. BOX-WHISKER PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 5
  • 6. BOX-WHISKER PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 6
  • 7. SCATTER PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 7 Scatterplots show many points plotted in the Cartesian plane. Each point represents the values of two variables. One variable is chosen in the horizontal axis and another in the vertical axis. The simple scatterplot is created using the plot() function.
  • 8. SCATTER PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 8
  • 9. SCATTER PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 9
  • 10. PAIRS PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 10 The pairs plot is a grid of scatterplots. showing the bivariate relationships between all pairs of variables in a multivariate dataset.
  • 11. PAIRS PLOTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 11
  • 12. LINE CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 12 A line chart is a graph that connects a series of points by drawing line segments between them. These points are ordered in one of their coordinate (usually the x-coordinate) value. Line charts are usually used in identifying the trends in data. The plot() function in R is used to create the line graph
  • 13. LINE CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 13
  • 14. PIE CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 14 R Programming language has numerous libraries to create charts and graphs. A pie-chart is a representation of values as slices of a circle with different colors. The slices are labeled and the numbers corresponding to each slice is also represented in the chart. In R the pie chart is created using the pie() function which takes positive numbers as a vector input. The additional parameters are used to control labels, color, title etc
  • 15. PIE CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 15
  • 16. PIE CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 16
  • 17. CLEVELAND DOT CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 17 dotchart() function in R Language is used to create a dot chart of the specified data. A dot chart is defined as a plot which is used to draw a Cleveland dot plot.
  • 18. CLEVELAND DOT CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 18
  • 19. CLEVELAND DOT CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 19
  • 20. BAR CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 20 A bar chart represents data in rectangular bars with length of the bar proportional to the value of the variable. R uses the function barplot() to create bar charts. R can draw both vertical and Horizontal bars in the bar chart. In bar chart each of the bars can be given different colors
  • 21. BAR CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 21
  • 22. BAR CHARTS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 22
  • 23. COPY GRAPHICS TO OTHER APPLICATIONS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 23 Plots panel –> Export –> Save as Image or Save as PDF
  • 24. COPY GRAPHICS TO OTHER APPLICATIONS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 24 It's also possible to save the graph using R codes as follow: Specify files to save your image using a function such as jpeg(), png(), svg() or pdf(). Additional argument indicating the width and the height of the image can be also used. Create the plot.
  • 25. COPY GRAPHICS TO OTHER APPLICATIONS 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 25
  • 26. SUMMARY 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 26  Introduction  Graphical Analysis  Box-whisker plots  Scatter plots  Pairs Plots  Line Charts  Pie charts  Cleveland Dot Charts  Bar Charts  Copy Graphics to other Applications
  • 27. ANY CLARIFICATIONS? 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 27
  • 28. THANK YOU 2/20/2021 VIKRAM NEERUGATTI, PROF. & HOD, DEPT. OF CSE, AUDISANKARA INSTITUTE OF TECHNOLOGY, GUDURU. 28