SlideShare a Scribd company logo
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

PPTX
Alteryx Presentation
PPTX
Microsoft Fabric.pptx
PPTX
Talend Big Data Capabilities Overview
PPT
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
PPT
High/Low Level Design
PDF
Pipelines and Packages: Introduction to Azure Data Factory (DATA:Scotland 2019)
PPTX
Oracle mysql comparison
PPTX
Visualization using Tableau
Alteryx Presentation
Microsoft Fabric.pptx
Talend Big Data Capabilities Overview
Learning Tableau - Data, Graphs, Filters, Dashboards and Advanced features
High/Low Level Design
Pipelines and Packages: Introduction to Azure Data Factory (DATA:Scotland 2019)
Oracle mysql comparison
Visualization using Tableau

What's hot (20)

PPTX
Azure DevOps
PPTX
Introduction to the Microsoft Azure Cloud.pptx
PDF
How to use 23c AHF AIOPS to protect Oracle Databases 23c
PDF
Data Migration Strategies Powerpoint Presentation Slides
PPTX
Altis: AWS Snowflake Practice
PDF
Make Your Application “Oracle RAC Ready” & Test For It
PPTX
Introduction to azure cosmos db
PPTX
Databricks Fundamentals
PDF
200+sql server interview_questions
PPTX
Azure Databricks - An Introduction (by Kris Bock)
PDF
Data Migration Steps PowerPoint Presentation Slides
PDF
Data Visualisation & Analytics with Tableau (Beginner) - by Maria Koumandraki
PPTX
Introduction of ssis
PPTX
Azure Data Factory ETL Patterns in the Cloud
PPTX
Tableau Server Basics
PDF
Introduction to data migration
PDF
Knowledge Graph Research and Innovation Challenges
PPTX
ISTIO Deep Dive
PDF
Time to Talk about Data Mesh
PPTX
Azure Infrastructure as Code and Hashicorp Terraform
Azure DevOps
Introduction to the Microsoft Azure Cloud.pptx
How to use 23c AHF AIOPS to protect Oracle Databases 23c
Data Migration Strategies Powerpoint Presentation Slides
Altis: AWS Snowflake Practice
Make Your Application “Oracle RAC Ready” & Test For It
Introduction to azure cosmos db
Databricks Fundamentals
200+sql server interview_questions
Azure Databricks - An Introduction (by Kris Bock)
Data Migration Steps PowerPoint Presentation Slides
Data Visualisation & Analytics with Tableau (Beginner) - by Maria Koumandraki
Introduction of ssis
Azure Data Factory ETL Patterns in the Cloud
Tableau Server Basics
Introduction to data migration
Knowledge Graph Research and Innovation Challenges
ISTIO Deep Dive
Time to Talk about Data Mesh
Azure Infrastructure as Code and Hashicorp Terraform
Ad

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

DOCX
Week-3 – System RSupplemental material1Recap •.docx
PPTX
Chart and graphs in R programming language
PPTX
Exploratory Data Analysis
PPTX
R programming.pptx r language easy concept
PDF
R training5
PPT
Meeting 7 Different Types of Graphs (Materi Pendukung Part C).ppt
PPT
Different Types of Graphs.ppt........,...
PPT
Different Types of Graphs.ppt
PPTX
UNIT_4_data visualization.pptx
PPTX
17TH October 2023 DOE SRM University.pptx
PPT
Different Types of Graphs.ppt
PPT
Different Types of Graphs
PPT
kinds of graph for english 10 grammar ..
PPT
Different Types of Graphs Grade 10.ppt
PPT
Different Types of Graphs-1.pptDifferent Types of Graphs-1.ppt
PPT
Different Types of Graphs and their application
PPT
Different types of graphs
PPT
Different types of graphs
PPT
Different types of graphs
PDF
AI 11 - Data Visualizaton.pdf ......m.........
Week-3 – System RSupplemental material1Recap •.docx
Chart and graphs in R programming language
Exploratory Data Analysis
R programming.pptx r language easy concept
R training5
Meeting 7 Different Types of Graphs (Materi Pendukung Part C).ppt
Different Types of Graphs.ppt........,...
Different Types of Graphs.ppt
UNIT_4_data visualization.pptx
17TH October 2023 DOE SRM University.pptx
Different Types of Graphs.ppt
Different Types of Graphs
kinds of graph for english 10 grammar ..
Different Types of Graphs Grade 10.ppt
Different Types of Graphs-1.pptDifferent Types of Graphs-1.ppt
Different Types of Graphs and their application
Different types of graphs
Different types of graphs
Different types of graphs
AI 11 - Data Visualizaton.pdf ......m.........
Ad

More from Vikram Nandini (20)

PDF
IoT: From Copper strip to Gold Bar
PDF
Design Patterns
PDF
Linux File Trees and Commands
PDF
Introduction to Linux & Basic Commands
PDF
INTRODUCTION to OOAD
PDF
PDF
Manufacturing - II Part
PDF
Manufacturing
PDF
Business Models
PDF
Prototyping Online Components
PDF
Artificial Neural Networks
PDF
IoT-Prototyping
PDF
Design Principles for Connected Devices
PDF
Introduction to IoT
PDF
Embedded decices
PDF
Communication in the IoT
PDF
Introduction to Cyber Security
PDF
cloud computing UNIT-2.pdf
PDF
Introduction to Web Technologies
PDF
Cascading Style Sheets
IoT: From Copper strip to Gold Bar
Design Patterns
Linux File Trees and Commands
Introduction to Linux & Basic Commands
INTRODUCTION to OOAD
Manufacturing - II Part
Manufacturing
Business Models
Prototyping Online Components
Artificial Neural Networks
IoT-Prototyping
Design Principles for Connected Devices
Introduction to IoT
Embedded decices
Communication in the IoT
Introduction to Cyber Security
cloud computing UNIT-2.pdf
Introduction to Web Technologies
Cascading Style Sheets

Recently uploaded (20)

PDF
Module 4: Burden of Disease Tutorial Slides S2 2025
PDF
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
PDF
Complications of Minimal Access Surgery at WLH
PPTX
master seminar digital applications in india
PDF
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
PPTX
Cell Types and Its function , kingdom of life
PDF
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
PPTX
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
PPTX
Institutional Correction lecture only . . .
PPTX
Final Presentation General Medicine 03-08-2024.pptx
PDF
Supply Chain Operations Speaking Notes -ICLT Program
PDF
Insiders guide to clinical Medicine.pdf
PPTX
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
PPTX
human mycosis Human fungal infections are called human mycosis..pptx
PPTX
Renaissance Architecture: A Journey from Faith to Humanism
PDF
FourierSeries-QuestionsWithAnswers(Part-A).pdf
PPTX
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPTX
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
PDF
Computing-Curriculum for Schools in Ghana
PDF
01-Introduction-to-Information-Management.pdf
Module 4: Burden of Disease Tutorial Slides S2 2025
ANTIBIOTICS.pptx.pdf………………… xxxxxxxxxxxxx
Complications of Minimal Access Surgery at WLH
master seminar digital applications in india
grade 11-chemistry_fetena_net_5883.pdf teacher guide for all student
Cell Types and Its function , kingdom of life
BÀI TẬP BỔ TRỢ 4 KỸ NĂNG TIẾNG ANH 9 GLOBAL SUCCESS - CẢ NĂM - BÁM SÁT FORM Đ...
school management -TNTEU- B.Ed., Semester II Unit 1.pptx
Institutional Correction lecture only . . .
Final Presentation General Medicine 03-08-2024.pptx
Supply Chain Operations Speaking Notes -ICLT Program
Insiders guide to clinical Medicine.pdf
Introduction_to_Human_Anatomy_and_Physiology_for_B.Pharm.pptx
human mycosis Human fungal infections are called human mycosis..pptx
Renaissance Architecture: A Journey from Faith to Humanism
FourierSeries-QuestionsWithAnswers(Part-A).pdf
Pharmacology of Heart Failure /Pharmacotherapy of CHF
PPT- ENG7_QUARTER1_LESSON1_WEEK1. IMAGERY -DESCRIPTIONS pptx.pptx
Computing-Curriculum for Schools in Ghana
01-Introduction-to-Information-Management.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