SlideShare une entreprise Scribd logo
1  sur  31
Data Visualization
Data visualization is the representation of data through use of
common graphics, such as charts, plots, infographics, and even
animations. These visual displays of information communicate
complex data relationships and data-driven insights in a way that is
easy to understand.
Key Principles of Data Visualization:
•Simplicity: Keep visualizations clear and uncluttered.
•Relevance: Focus on relevant data for the audience.
•Accuracy: Ensure accuracy in representation.
•Consistency: Maintain a consistent design for easier interpretation.
Common Types of Data Visualization:
•Statistical Charts: Bar charts, line charts, scatter plots.
•Time-Series Visualizations: Time-series charts, Gantt charts.
•Geospatial Visualizations: Maps, choropleth maps, bubble maps.
•Hierarchical Visualizations: Tree maps, sunburst charts.
•Network Visualizations: Node-link diagrams, force-directed graphs.
•Multidimensional Visualizations: Parallel coordinates, radar charts.
Best Practices in Data Visualization:
•Understand the Audience: Tailor visualizations to the audience's expertise.
•Choose Appropriate Visualizations: Match the data type and analytical task.
•Use Color Effectively: Emphasize key points, but avoid misleading use.
•Provide Context: Include titles, labels, and legends for clarity.
•Interactivity: Use interactive elements for exploration
Analytical Tasks and Visualization Techniques:
•Relationships: Scatter plots, network graphs.
•Comparison: Bar charts, line charts, stacked bar/column charts.
•Distribution: Histograms, box plots, kernel density plots.
•Composition: Pie charts, stacked area charts.
•Temporal Analysis: Time-series charts, Gantt charts.
•Spatial Analysis: Choropleth maps, bubble maps.
Challenges in Data Visualization:
•Misinterpretation: Users may misinterpret visual elements.
•Data Overload: Too much data can lead to clutter and confusion.
•Biased Visualization: Visualization choices can influence perception.
ggplot
# Install and load necessary packages
install.packages("ggplot2")
library(ggplot2)
# Load the iris dataset
data(iris)
# Scatter plot
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) +
geom_point() +
labs(title = "Scatter Plot of Sepal Length and Sepal Width",
x = "Sepal Length", y = "Sepal Width")
# Box plot
ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) +
geom_boxplot() +
labs(title = "Box Plot of Sepal Length by Species",
x = "Species", y = "Sepal Length")
# Histogram
ggplot(iris, aes(x = Sepal.Length, fill = Species)) +
geom_histogram(binwidth = 0.2, position = "identity", alpha =
0.7) +
labs(title = "Histogram of Sepal Length",
x = "Sepal Length", y = "Frequency")
# Density plot
ggplot(iris, aes(x = Sepal.Length, fill = Species)) +
geom_density(alpha = 0.5) +
labs(title = "Density Plot of Sepal Length",
x = "Sepal Length", y = "Density")
# Line plot (time series - not applicable to iris dataset)
# This is just a placeholder as the iris dataset doesn't have a
time series variable.
# Customizing axes and themes
ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color =
Species)) +
geom_point() +
labs(title = "Scatter Plot of Sepal Length and Sepal Width",
x = "Sepal Length", y = "Sepal Width") +
theme_minimal()
Cheat Sheets
Data Visualization :https://github.com/rstudio/cheatsheets/blob/main/data-visualization.pdf
ggPlot : https://www.datacamp.com/cheat-sheet/ggplot2-cheat-sheet

Contenu connexe

Similaire à Data Visualization.pptx

GettingKnowTo ArcGIS10x
GettingKnowTo ArcGIS10xGettingKnowTo ArcGIS10x
GettingKnowTo ArcGIS10x
mukti subedi
 
geographic information system pdf
geographic information system pdfgeographic information system pdf
geographic information system pdf
Rolan Ben Lorono
 

Similaire à Data Visualization.pptx (20)

GettingKnowTo ArcGIS10x
GettingKnowTo ArcGIS10xGettingKnowTo ArcGIS10x
GettingKnowTo ArcGIS10x
 
Raster data model
Raster data modelRaster data model
Raster data model
 
Raster data model
Raster data modelRaster data model
Raster data model
 
Vector data model
Vector data model Vector data model
Vector data model
 
Vector data model
Vector data modelVector data model
Vector data model
 
geographic information system pdf
geographic information system pdfgeographic information system pdf
geographic information system pdf
 
Gis
GisGis
Gis
 
Datascape Introduction
Datascape IntroductionDatascape Introduction
Datascape Introduction
 
Unit III.pptx
Unit III.pptxUnit III.pptx
Unit III.pptx
 
Review presentation for Orientation 2014
Review presentation for Orientation 2014Review presentation for Orientation 2014
Review presentation for Orientation 2014
 
Visualization of Big Data in Web Apps
Visualization of Big Data in Web AppsVisualization of Big Data in Web Apps
Visualization of Big Data in Web Apps
 
Data Visulalization
Data VisulalizationData Visulalization
Data Visulalization
 
The state of geo in ElasticSearch
The state of geo in ElasticSearchThe state of geo in ElasticSearch
The state of geo in ElasticSearch
 
Glyph-Placement-Strategy
Glyph-Placement-StrategyGlyph-Placement-Strategy
Glyph-Placement-Strategy
 
UNit4.pdf
UNit4.pdfUNit4.pdf
UNit4.pdf
 
Weave-D - 2nd Progress Evaluation Presentation
Weave-D - 2nd Progress Evaluation PresentationWeave-D - 2nd Progress Evaluation Presentation
Weave-D - 2nd Progress Evaluation Presentation
 
Introduction of data science
Introduction of data scienceIntroduction of data science
Introduction of data science
 
GNO Code: Geospatial Visualization in the Browser - An Overview
GNO Code: Geospatial Visualization in the Browser - An OverviewGNO Code: Geospatial Visualization in the Browser - An Overview
GNO Code: Geospatial Visualization in the Browser - An Overview
 
SenchaCon 2016: Add Magic to Your Ext JS Apps with D3 Visualizations - Vitaly...
SenchaCon 2016: Add Magic to Your Ext JS Apps with D3 Visualizations - Vitaly...SenchaCon 2016: Add Magic to Your Ext JS Apps with D3 Visualizations - Vitaly...
SenchaCon 2016: Add Magic to Your Ext JS Apps with D3 Visualizations - Vitaly...
 
Geographical Information System
Geographical Information SystemGeographical Information System
Geographical Information System
 

Plus de Kanchana Weerasinghe

Bizzxe Intelligence - Business Analyser
Bizzxe Intelligence - Business AnalyserBizzxe Intelligence - Business Analyser
Bizzxe Intelligence - Business Analyser
Kanchana Weerasinghe
 
Manufacturing Efficiency and Performance Calculation
Manufacturing Efficiency and Performance CalculationManufacturing Efficiency and Performance Calculation
Manufacturing Efficiency and Performance Calculation
Kanchana Weerasinghe
 

Plus de Kanchana Weerasinghe (14)

Data_Warehouse_Concept.pptx
Data_Warehouse_Concept.pptxData_Warehouse_Concept.pptx
Data_Warehouse_Concept.pptx
 
ERP Scope
ERP ScopeERP Scope
ERP Scope
 
ERP Manufacturing Module
ERP Manufacturing  ModuleERP Manufacturing  Module
ERP Manufacturing Module
 
Business Process Re-Engineering Case Study
Business Process Re-Engineering Case StudyBusiness Process Re-Engineering Case Study
Business Process Re-Engineering Case Study
 
Business Process Reengineering big picture
Business Process Reengineering big picture Business Process Reengineering big picture
Business Process Reengineering big picture
 
Marketing stratigy ver 2
Marketing stratigy ver 2Marketing stratigy ver 2
Marketing stratigy ver 2
 
Data science in business
Data science in businessData science in business
Data science in business
 
Business state evaluation framework
Business state evaluation frameworkBusiness state evaluation framework
Business state evaluation framework
 
Pragmatic Approach to Data Science
Pragmatic Approach to Data SciencePragmatic Approach to Data Science
Pragmatic Approach to Data Science
 
Review Framework
Review FrameworkReview Framework
Review Framework
 
Bizzxe Intelligence - Business Analyser
Bizzxe Intelligence - Business AnalyserBizzxe Intelligence - Business Analyser
Bizzxe Intelligence - Business Analyser
 
Manufacturing Efficiency and Performance Calculation
Manufacturing Efficiency and Performance CalculationManufacturing Efficiency and Performance Calculation
Manufacturing Efficiency and Performance Calculation
 
QA Workflow
QA WorkflowQA Workflow
QA Workflow
 
Business process reengineering
Business process reengineeringBusiness process reengineering
Business process reengineering
 

Dernier

➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
amitlee9823
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
amitlee9823
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
amitlee9823
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
amitlee9823
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
amitlee9823
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
only4webmaster01
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
amitlee9823
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Riyadh +966572737505 get cytotec
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
amitlee9823
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
amitlee9823
 

Dernier (20)

➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men  🔝Dindigul🔝   Escor...
➥🔝 7737669865 🔝▻ Dindigul Call-girls in Women Seeking Men 🔝Dindigul🔝 Escor...
 
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
5CL-ADBA,5cladba, Chinese supplier, safety is guaranteed
 
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts ServiceCall Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
Call Girls In Shalimar Bagh ( Delhi) 9953330565 Escorts Service
 
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men  🔝Thrissur🔝   Escor...
➥🔝 7737669865 🔝▻ Thrissur Call-girls in Women Seeking Men 🔝Thrissur🔝 Escor...
 
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night StandCall Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Nandini Layout ☎ 7737669865 🥵 Book Your One night Stand
 
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
Mg Road Call Girls Service: 🍓 7737669865 🍓 High Profile Model Escorts | Banga...
 
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men  🔝Bangalore🔝   Esc...
➥🔝 7737669865 🔝▻ Bangalore Call-girls in Women Seeking Men 🔝Bangalore🔝 Esc...
 
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort ServiceBDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
BDSM⚡Call Girls in Mandawali Delhi >༒8448380779 Escort Service
 
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 nightCheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
Cheap Rate Call girls Sarita Vihar Delhi 9205541914 shot 1500 night
 
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night StandCall Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Attibele ☎ 7737669865 🥵 Book Your One night Stand
 
Midocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFxMidocean dropshipping via API with DroFx
Midocean dropshipping via API with DroFx
 
April 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's AnalysisApril 2024 - Crypto Market Report's Analysis
April 2024 - Crypto Market Report's Analysis
 
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night StandCall Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
Call Girls In Bellandur ☎ 7737669865 🥵 Book Your One night Stand
 
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 9155563397 👗 Top Class Call Girl Service B...
 
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
Call Girls Indiranagar Just Call 👗 7737669865 👗 Top Class Call Girl Service B...
 
Abortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get CytotecAbortion pills in Jeddah | +966572737505 | Get Cytotec
Abortion pills in Jeddah | +966572737505 | Get Cytotec
 
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men  🔝mahisagar🔝   Esc...
➥🔝 7737669865 🔝▻ mahisagar Call-girls in Women Seeking Men 🔝mahisagar🔝 Esc...
 
Capstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics ProgramCapstone Project on IBM Data Analytics Program
Capstone Project on IBM Data Analytics Program
 
Discover Why Less is More in B2B Research
Discover Why Less is More in B2B ResearchDiscover Why Less is More in B2B Research
Discover Why Less is More in B2B Research
 
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
Call Girls Bannerghatta Road Just Call 👗 7737669865 👗 Top Class Call Girl Ser...
 

Data Visualization.pptx

  • 2. Data visualization is the representation of data through use of common graphics, such as charts, plots, infographics, and even animations. These visual displays of information communicate complex data relationships and data-driven insights in a way that is easy to understand.
  • 3. Key Principles of Data Visualization: •Simplicity: Keep visualizations clear and uncluttered. •Relevance: Focus on relevant data for the audience. •Accuracy: Ensure accuracy in representation. •Consistency: Maintain a consistent design for easier interpretation. Common Types of Data Visualization: •Statistical Charts: Bar charts, line charts, scatter plots. •Time-Series Visualizations: Time-series charts, Gantt charts. •Geospatial Visualizations: Maps, choropleth maps, bubble maps. •Hierarchical Visualizations: Tree maps, sunburst charts. •Network Visualizations: Node-link diagrams, force-directed graphs. •Multidimensional Visualizations: Parallel coordinates, radar charts.
  • 4. Best Practices in Data Visualization: •Understand the Audience: Tailor visualizations to the audience's expertise. •Choose Appropriate Visualizations: Match the data type and analytical task. •Use Color Effectively: Emphasize key points, but avoid misleading use. •Provide Context: Include titles, labels, and legends for clarity. •Interactivity: Use interactive elements for exploration Analytical Tasks and Visualization Techniques: •Relationships: Scatter plots, network graphs. •Comparison: Bar charts, line charts, stacked bar/column charts. •Distribution: Histograms, box plots, kernel density plots. •Composition: Pie charts, stacked area charts. •Temporal Analysis: Time-series charts, Gantt charts. •Spatial Analysis: Choropleth maps, bubble maps. Challenges in Data Visualization: •Misinterpretation: Users may misinterpret visual elements. •Data Overload: Too much data can lead to clutter and confusion. •Biased Visualization: Visualization choices can influence perception.
  • 5.
  • 6.
  • 7.
  • 8.
  • 9.
  • 10.
  • 11.
  • 12.
  • 13.
  • 14.
  • 15.
  • 16.
  • 17.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26.
  • 27.
  • 28.
  • 29. # Install and load necessary packages install.packages("ggplot2") library(ggplot2) # Load the iris dataset data(iris) # Scatter plot ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) + geom_point() + labs(title = "Scatter Plot of Sepal Length and Sepal Width", x = "Sepal Length", y = "Sepal Width") # Box plot ggplot(iris, aes(x = Species, y = Sepal.Length, fill = Species)) + geom_boxplot() + labs(title = "Box Plot of Sepal Length by Species", x = "Species", y = "Sepal Length")
  • 30. # Histogram ggplot(iris, aes(x = Sepal.Length, fill = Species)) + geom_histogram(binwidth = 0.2, position = "identity", alpha = 0.7) + labs(title = "Histogram of Sepal Length", x = "Sepal Length", y = "Frequency") # Density plot ggplot(iris, aes(x = Sepal.Length, fill = Species)) + geom_density(alpha = 0.5) + labs(title = "Density Plot of Sepal Length", x = "Sepal Length", y = "Density") # Line plot (time series - not applicable to iris dataset) # This is just a placeholder as the iris dataset doesn't have a time series variable. # Customizing axes and themes ggplot(iris, aes(x = Sepal.Length, y = Sepal.Width, color = Species)) + geom_point() + labs(title = "Scatter Plot of Sepal Length and Sepal Width", x = "Sepal Length", y = "Sepal Width") + theme_minimal()
  • 31. Cheat Sheets Data Visualization :https://github.com/rstudio/cheatsheets/blob/main/data-visualization.pdf ggPlot : https://www.datacamp.com/cheat-sheet/ggplot2-cheat-sheet