SlideShare a Scribd company logo
1 of 45
Download to read offline
Learn ggplot2
A K f SkillAs Kungfu Skills
Given by
Kai Xiao(Data Sciencetist)
Vi i Zh (C f d & CTO)Vivian Zhang(Co-founder & CTO)
Contact: vivian zhang@supstat comContact: vivian.zhang@supstat.com
• I: Point
• II: Bar
• III:Histogramg
• IV:Line
• V: Tile• V: Tile
• VI:Map
IntroductionIntroduction
• ggplot2!is!a!plotting!system!for!R
• based!on!the《The Grammar!of!
Graphics》
• which!tries!to!take!the!good!parts!
of!base!and!lattice!graphics!and!
none of the bad partsnone!of!the!bad!parts
• It!takes!care!of!many!of!the!fiddly!
details that make plotting a hassledetails!that!make!plotting!a!hassle
• It!becomes!easy!to!produce!
complex!multi‐layered!graphicsp y g p
Why we love ggplot2?Why we love ggplot2?
• control the plot as abstract layers and make creativity become reality;
d l hi ki• get used to structural thinking;
• get beautiful graphics while avoiding complicated details
1973 murder cases in USA
7 Basic Concepts7 Basic Concepts
Mapping• Mapping
• Scale
• Geometric
• StatisticsStat st cs
• Coordinate
L• Layer
• Facet
MappingMapping
M i t l l ti b t i blMapping controls relations between variables
ScaleScale
Scale will present mapping on coordinate scalesScale will present mapping on coordinate scales.
Scale and Mapping is closely related concepts.
GeometricGeometric
Geom means the graphical elements such asGeom means the graphical elements, such as
points, lines and polygons.
StatisticsStatistics
Stat enables us to calculate and do statisticalStat enables us to calculate and do statistical
analysis based, such as adding a regression line.
StatStat
CoordinateCoordinate
Cood will affect how we observe graphicalCood will affect how we observe graphical
elements. Transformation of coordinates is useful.
Stat Coord
LayerLayer
Component: data, mapping, geom, stat
i l ill ll bli h lUsing layer will allow users to establish plots step
by step. It become much easier to modify a plot.
FacetFacet
Facet splits data into groups and draw each
group separately. Usually, there is a order.
7 Basic Concepts7 Basic Concepts
Mapping• Mapping
• Scale
• Geometric
• StatisticsStat st cs
• Coordinate
L• Layer
• Facet
Skill I:PointSkill I:Point
Sample data--mpgSample data mpg
• Fuel economy data from 1999 and 2008 for 38 populary p p
modelsof car
D il• Details
• Displ :!!!!!!!!!!!!!!!engine!displacement,!in!litres
• Cyl: number of cylinders• Cyl:!!!!!!!!!!!!!!!!!!!!number!of!cylinders!
• Trans:!!!!!!!!!!!!!!!!type!of!transmission!
• Drv:!!!!!!!!!!!!!!!!!!!front‐wheel,!rear!wheel!drive,!4wd!, ,
• Cty:!!!!!!!!!!!!!!!!!!!!city!miles!per!gallon!
• Hwy:!!!!!!!!!!!!!!!!!!highway!miles!per!gallon!
> library(ggplot2)
> str(mpg)
'data.frame': 234 obs. of 14 variables:
$ manufacturer: Factor w/ 15 levels "audi","chevrolet",..:
$ model : Factor w/ 38 levels "4runner 4wd",..:
$ displ : num 1.8 1.8 2 2 2.8 2.8 3.1 1.8 1.8 2 ...
$ year : int 1999 1999 2008 2008 1999 1999 2008 1999$ year : int 1999 1999 2008 2008 1999 1999 2008 1999
$ cyl : int 4 4 4 4 6 6 6 4 4 4 ...
$ trans : Factor w/ 10 levels "auto(av)","auto(l3)",..:
$ d 3 l l f$ drv : Factor w/ 3 levels "4","f","r":
$ cty : int 18 21 20 21 16 18 18 18 16 20 ...
$ hwy : int 29 29 31 30 26 26 27 26 25 28 ...
$ fl : Factor w/ 5 levels "c","d","e","p",..:
$ class : Factor w/ 7 levels "2seater","compact",..:
p <‐ ggplot(data=mpg mapping=aes(x=cty y=hwy))
aesthetics
p!< ggplot(data mpg,!mapping aes(x cty,!y hwy))
p!+!geom_point()
>!summary(p)!
data:!manufacturer,!model,!displ,!year,!cyl,!trans,!drv,!cty,!hwy,!
fl l [ ]fl,!class![234x11]!
mapping:!x!=!cty,!y!=!hwy
faceting:!facet_null()!g _ ()
>!summary(p+geom_point())
data: manufacturer model displ year cyl trans drv cty hwydata:!manufacturer,!model,!displ,!year,!cyl,!trans,!drv,!cty,!hwy,
fl,!class![234x11]
mapping:!!x!=!cty,!y!=!hwy
f i f ll()faceting:!facet_null()!
‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
geom_point:!na.rm!=!FALSE!g _p
stat_identity:!!
position_identity:!(width!=!NULL,!height!=!NULL)
p + geom point(color='red4' size=3)p!+!geom_point(color red4 ,size 3)
# add one more layer--color
p <- ggplot(mpg,aes(x=cty,y=hwy,colour=factor(year)))p ggp ( pg, ( y,y y, (y )))
p + geom_point()
# add one more stat (loess: local partial polynomial regression)
>!p!+!geom_point()!+!stat_smooth()
p!<‐ ggplot(data=mpg,!mapping=aes(x=cty,y=hwy))
p!+!geom_point(aes(colour=factor(year)))+p g _p ( ( (y )))
stat_smooth()
Two equally ways to draw
p <‐ ggplot(mpg aes(x=cty y=hwy))
q y y
p!!<‐ ggplot(mpg,!aes(x=cty,y=hwy))
p!!+!geom_point(aes(colour=factor(year)))+
stat smooth()_ ()
()d!<‐ ggplot()!+
geom_point(data=mpg,!aes(x=cty,!y=hwy,!colour=factor(year)))+
stat_smooth(data=mpg,!aes(x=cty,!y=hwy))
print(d)
Beside the “white paper”canvas, we will find geom and stat
canvas.
>!summary(d)
data:![0x0][ ]
faceting:!facet_null()!
‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐‐
mapping: x = cty y = hwy colour = factor(year)mapping:!x!=!cty,!y!=!hwy,!colour =!factor(year)!
geom_point:!na.rm!=!FALSE!
stat_identity:!!
position_identity:!(width!=!NULL,!height!=!NULL)
mapping:!x!=!cty,!y!=!hwy!pp g y, y y
geom_smooth:!!
stat_smooth:!method!=!auto,!formula!=!y!~!x,!se!=!TRUE,!
n = 80 fullrange = FALSE level = 0 95 na rm = FALSEn!=!80,!fullrange =!FALSE,!level!=!0.95,!na.rm!=!FALSE!
position_identity:!(width!=!NULL,!height!=!NULL)
# Using scale() function, we can control color of scale.
p + geom_point(aes(colour=factor(year)))+
h()stat_smooth()+
scale_color_manual(values =c('steelblue','red4'))
# We can map “displ”to the size of point
p + geom_point(aes(colour=factor(year),size=displ))+
h()stat_smooth()+
scale_color_manual(values =c('steelblue','red4'))
#!We!solve!the!problem!with!overlapping!and!point!being!too!small
p!+!geom_point(aes(colour=factor(year),size=displ),!alpha=0.5,position!=!"jitter")+
stat_smooth()+
scale_color_manual(values!=c('steelblue','red4'))+
scale_size_continuous(range!=!c(4,!10))
#!We!change!the!coordinate!system.
p!+!geom_point(aes(colour=factor(year),size=displ),!alpha=0.5,position!=!"jitter")+
stat_smooth()+
scale_color_manual(values!=c('steelblue','red4'))+
scale_size_continuous(range!=!c(4,!10))!+!!!!coord_flip()
p!+!geom_point(aes(colour=factor(year),size=displ),
alpha=0.5,position!=!"jitter")+
stat smooth()+_ ()
scale_color_manual(values!=c('steelblue','red4'))+
scale_size_continuous(range!=!c(4,!10))!!+!!!!coord_polar()
p!+!geom_point(aes(colour=factor(year),size=displ),
alpha=0.5,position!=!"jitter")!!+!!!!stat_smooth()+
scale color manual(values!=c('steelblue','red4'))+_ _ ( ( , ))
scale_size_continuous(range!=!c(4,!10))+!!!!!!!!!!!!!!!!!!!
coord_cartesian(xlim =!c(15,!25),!ylim=c(15,40))
# Using facet() function, we now split data and draw them by group
p + geom_point(aes(colour=class,size=displ),
alpha=0.5,position = "jitter")+
hstat_smooth()+
scale_size_continuous(range = c(4, 10))+
facet_wrap(~ year,ncol=1)
# Add plot name and specify all information you want to add
p <- ggplot(mpg, aes(x=cty,y=hwy))
p + geom_point(aes(colour=class,size=displ),
alpha=0.5,position = "jitter")+ stat_smooth()+
l i ti ( (4 10))scale_size_continuous(range = c(4, 10))+
facet_wrap(~ year,ncol=1) + opts(title='model of car and mpg')+
labs(y='driving distance per gallon on highway', x='driving distance per gallon on city road',
size='displacement', colour ='model')
# scatter plot for diamond dataset
p <- ggplot(diamonds,aes(carat,price))p ggp ( , ( ,p ))
p + geom_point()
# use transparency and small size points
p + geom_point(size=0.1,alpha=0.1)p g _p ( , p )
# use bin chart to observe intensity of points
p + stat_bin2d(bins = 40)p _ ( )
# estimate data dentisy
p + stat_density2d(aes(fill = ..level..), geom="polygon") +
coord cartesian(xlim = c(0 1 5) ylim=c(0 6000))coord_cartesian(xlim = c(0, 1.5),ylim=c(0,6000))
Skill II:BarSkill II:Bar
Skill III:HistogramSkill III:Histogram
Skill IV:LineSkill IV:Line
Skill V:TileSkill V:Tile
Skill VI:MapSkill VI:Map
ResourcesResources
http://learnr.wordpress.com
Redraw all the lattice graphRedraw all the lattice graph
by ggplot2
ResourcesResources
All the examples are done by
ggplot2ggplot2.
ResourcesResources
• http://wiki stdout org/rcookbook/Graphs/http://wiki.stdout.org/rcookbook/Graphs/
• http://r-blogger.com
htt //St k fl• http://Stackoverflow.com
• http://xccds1977.blogspot.com
• http://r-ke.info/
• http://www.youtube.com/watch?v=vnVJJYi1
mbw
Thank you! Come back for more!
Sign up at: www.meetup.com/nyc-open-data
Give feedback at: www.bit.ly/nycopen

More Related Content

Similar to R workshop iii -- 3 hours to learn ggplot2 series

Impacts of collaborative consumption on traditional industries: scenarios for...
Impacts of collaborative consumption on traditional industries: scenarios for...Impacts of collaborative consumption on traditional industries: scenarios for...
Impacts of collaborative consumption on traditional industries: scenarios for...David Chapuis
 
GIS and Google Earth In Geography
GIS and Google Earth In GeographyGIS and Google Earth In Geography
GIS and Google Earth In GeographyOllie Bray
 
Business Succession Buyside Perspective
Business Succession Buyside PerspectiveBusiness Succession Buyside Perspective
Business Succession Buyside Perspectivemostiguy
 
Computer Fundamental
Computer FundamentalComputer Fundamental
Computer FundamentalNishithBera1
 
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und Erfahrungen
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und ErfahrungenOSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und Erfahrungen
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und ErfahrungenNETWAYS
 
Go, the one language to learn in 2014
Go, the one language to learn in 2014Go, the one language to learn in 2014
Go, the one language to learn in 2014Andrzej Grzesik
 
JDD2014: GO! The one language you have to try in 2014 - Andrzej Grzesik
JDD2014: GO! The one language you have to try in 2014 - Andrzej GrzesikJDD2014: GO! The one language you have to try in 2014 - Andrzej Grzesik
JDD2014: GO! The one language you have to try in 2014 - Andrzej GrzesikPROIDEA
 
SLES11で構築するXen仮想化+HAクラスタ入門
SLES11で構築するXen仮想化+HAクラスタ入門SLES11で構築するXen仮想化+HAクラスタ入門
SLES11で構築するXen仮想化+HAクラスタ入門VirtualTech Japan Inc.
 
Apuntes lpic1-by-monino
Apuntes lpic1-by-moninoApuntes lpic1-by-monino
Apuntes lpic1-by-moninofjbarbaca
 
Avidgeo String Manipulation : Getting Started with Python and ArcGIS
Avidgeo String Manipulation : Getting Started with Python and ArcGISAvidgeo String Manipulation : Getting Started with Python and ArcGIS
Avidgeo String Manipulation : Getting Started with Python and ArcGISGuido Stein
 
HTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherHTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherIvano Malavolta
 
06uud1945amandemen
06uud1945amandemen06uud1945amandemen
06uud1945amandemenmardiyanto83
 
17. uud 45 + amandemen
17. uud 45 + amandemen17. uud 45 + amandemen
17. uud 45 + amandemenKhusny Kamal
 
Uud 1945 amandemen
Uud 1945 amandemenUud 1945 amandemen
Uud 1945 amandemenArye Rahma
 

Similar to R workshop iii -- 3 hours to learn ggplot2 series (20)

Web Form Elements
Web Form ElementsWeb Form Elements
Web Form Elements
 
Impacts of collaborative consumption on traditional industries: scenarios for...
Impacts of collaborative consumption on traditional industries: scenarios for...Impacts of collaborative consumption on traditional industries: scenarios for...
Impacts of collaborative consumption on traditional industries: scenarios for...
 
GIS and Google Earth In Geography
GIS and Google Earth In GeographyGIS and Google Earth In Geography
GIS and Google Earth In Geography
 
Improvement of defect record
Improvement of defect recordImprovement of defect record
Improvement of defect record
 
Business Succession Buyside Perspective
Business Succession Buyside PerspectiveBusiness Succession Buyside Perspective
Business Succession Buyside Perspective
 
Computer Fundamental
Computer FundamentalComputer Fundamental
Computer Fundamental
 
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und Erfahrungen
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und ErfahrungenOSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und Erfahrungen
OSDC 2011 | NoSQL in der Cloud: Patterns, Architektur und Erfahrungen
 
NDM Presentation
NDM PresentationNDM Presentation
NDM Presentation
 
ISP Workbook
ISP WorkbookISP Workbook
ISP Workbook
 
Profiling for Grown-Ups
Profiling for Grown-UpsProfiling for Grown-Ups
Profiling for Grown-Ups
 
Go, the one language to learn in 2014
Go, the one language to learn in 2014Go, the one language to learn in 2014
Go, the one language to learn in 2014
 
JDD2014: GO! The one language you have to try in 2014 - Andrzej Grzesik
JDD2014: GO! The one language you have to try in 2014 - Andrzej GrzesikJDD2014: GO! The one language you have to try in 2014 - Andrzej Grzesik
JDD2014: GO! The one language you have to try in 2014 - Andrzej Grzesik
 
SLES11で構築するXen仮想化+HAクラスタ入門
SLES11で構築するXen仮想化+HAクラスタ入門SLES11で構築するXen仮想化+HAクラスタ入門
SLES11で構築するXen仮想化+HAクラスタ入門
 
Who was william shakespeare ?
Who was william shakespeare ?Who was william shakespeare ?
Who was william shakespeare ?
 
Apuntes lpic1-by-monino
Apuntes lpic1-by-moninoApuntes lpic1-by-monino
Apuntes lpic1-by-monino
 
Avidgeo String Manipulation : Getting Started with Python and ArcGIS
Avidgeo String Manipulation : Getting Started with Python and ArcGISAvidgeo String Manipulation : Getting Started with Python and ArcGIS
Avidgeo String Manipulation : Getting Started with Python and ArcGIS
 
HTML5 and CSS3 Refresher
HTML5 and CSS3 RefresherHTML5 and CSS3 Refresher
HTML5 and CSS3 Refresher
 
06uud1945amandemen
06uud1945amandemen06uud1945amandemen
06uud1945amandemen
 
17. uud 45 + amandemen
17. uud 45 + amandemen17. uud 45 + amandemen
17. uud 45 + amandemen
 
Uud 1945 amandemen
Uud 1945 amandemenUud 1945 amandemen
Uud 1945 amandemen
 

More from Vivian S. Zhang

Career services workshop- Roger Ren
Career services workshop- Roger RenCareer services workshop- Roger Ren
Career services workshop- Roger RenVivian S. Zhang
 
Nycdsa wordpress guide book
Nycdsa wordpress guide bookNycdsa wordpress guide book
Nycdsa wordpress guide bookVivian S. Zhang
 
We're so skewed_presentation
We're so skewed_presentationWe're so skewed_presentation
We're so skewed_presentationVivian S. Zhang
 
Wikipedia: Tuned Predictions on Big Data
Wikipedia: Tuned Predictions on Big DataWikipedia: Tuned Predictions on Big Data
Wikipedia: Tuned Predictions on Big DataVivian S. Zhang
 
A Hybrid Recommender with Yelp Challenge Data
A Hybrid Recommender with Yelp Challenge Data A Hybrid Recommender with Yelp Challenge Data
A Hybrid Recommender with Yelp Challenge Data Vivian S. Zhang
 
Kaggle Top1% Solution: Predicting Housing Prices in Moscow
Kaggle Top1% Solution: Predicting Housing Prices in Moscow Kaggle Top1% Solution: Predicting Housing Prices in Moscow
Kaggle Top1% Solution: Predicting Housing Prices in Moscow Vivian S. Zhang
 
Data mining with caret package
Data mining with caret packageData mining with caret package
Data mining with caret packageVivian S. Zhang
 
Streaming Python on Hadoop
Streaming Python on HadoopStreaming Python on Hadoop
Streaming Python on HadoopVivian S. Zhang
 
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its author
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its authorKaggle Winning Solution Xgboost algorithm -- Let us learn from its author
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its authorVivian S. Zhang
 
Nyc open-data-2015-andvanced-sklearn-expanded
Nyc open-data-2015-andvanced-sklearn-expandedNyc open-data-2015-andvanced-sklearn-expanded
Nyc open-data-2015-andvanced-sklearn-expandedVivian S. Zhang
 
Nycdsa ml conference slides march 2015
Nycdsa ml conference slides march 2015 Nycdsa ml conference slides march 2015
Nycdsa ml conference slides march 2015 Vivian S. Zhang
 
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public dataTHE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public dataVivian S. Zhang
 
Max Kuhn's talk on R machine learning
Max Kuhn's talk on R machine learningMax Kuhn's talk on R machine learning
Max Kuhn's talk on R machine learningVivian S. Zhang
 
Winning data science competitions, presented by Owen Zhang
Winning data science competitions, presented by Owen ZhangWinning data science competitions, presented by Owen Zhang
Winning data science competitions, presented by Owen ZhangVivian S. Zhang
 
Using Machine Learning to aid Journalism at the New York Times
Using Machine Learning to aid Journalism at the New York TimesUsing Machine Learning to aid Journalism at the New York Times
Using Machine Learning to aid Journalism at the New York TimesVivian S. Zhang
 
Introducing natural language processing(NLP) with r
Introducing natural language processing(NLP) with rIntroducing natural language processing(NLP) with r
Introducing natural language processing(NLP) with rVivian S. Zhang
 

More from Vivian S. Zhang (20)

Why NYC DSA.pdf
Why NYC DSA.pdfWhy NYC DSA.pdf
Why NYC DSA.pdf
 
Career services workshop- Roger Ren
Career services workshop- Roger RenCareer services workshop- Roger Ren
Career services workshop- Roger Ren
 
Nycdsa wordpress guide book
Nycdsa wordpress guide bookNycdsa wordpress guide book
Nycdsa wordpress guide book
 
We're so skewed_presentation
We're so skewed_presentationWe're so skewed_presentation
We're so skewed_presentation
 
Wikipedia: Tuned Predictions on Big Data
Wikipedia: Tuned Predictions on Big DataWikipedia: Tuned Predictions on Big Data
Wikipedia: Tuned Predictions on Big Data
 
A Hybrid Recommender with Yelp Challenge Data
A Hybrid Recommender with Yelp Challenge Data A Hybrid Recommender with Yelp Challenge Data
A Hybrid Recommender with Yelp Challenge Data
 
Kaggle Top1% Solution: Predicting Housing Prices in Moscow
Kaggle Top1% Solution: Predicting Housing Prices in Moscow Kaggle Top1% Solution: Predicting Housing Prices in Moscow
Kaggle Top1% Solution: Predicting Housing Prices in Moscow
 
Data mining with caret package
Data mining with caret packageData mining with caret package
Data mining with caret package
 
Xgboost
XgboostXgboost
Xgboost
 
Streaming Python on Hadoop
Streaming Python on HadoopStreaming Python on Hadoop
Streaming Python on Hadoop
 
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its author
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its authorKaggle Winning Solution Xgboost algorithm -- Let us learn from its author
Kaggle Winning Solution Xgboost algorithm -- Let us learn from its author
 
Xgboost
XgboostXgboost
Xgboost
 
Nyc open-data-2015-andvanced-sklearn-expanded
Nyc open-data-2015-andvanced-sklearn-expandedNyc open-data-2015-andvanced-sklearn-expanded
Nyc open-data-2015-andvanced-sklearn-expanded
 
Nycdsa ml conference slides march 2015
Nycdsa ml conference slides march 2015 Nycdsa ml conference slides march 2015
Nycdsa ml conference slides march 2015
 
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public dataTHE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
THE HACK ON JERSEY CITY CONDO PRICES explore trends in public data
 
Max Kuhn's talk on R machine learning
Max Kuhn's talk on R machine learningMax Kuhn's talk on R machine learning
Max Kuhn's talk on R machine learning
 
Winning data science competitions, presented by Owen Zhang
Winning data science competitions, presented by Owen ZhangWinning data science competitions, presented by Owen Zhang
Winning data science competitions, presented by Owen Zhang
 
Using Machine Learning to aid Journalism at the New York Times
Using Machine Learning to aid Journalism at the New York TimesUsing Machine Learning to aid Journalism at the New York Times
Using Machine Learning to aid Journalism at the New York Times
 
Introducing natural language processing(NLP) with r
Introducing natural language processing(NLP) with rIntroducing natural language processing(NLP) with r
Introducing natural language processing(NLP) with r
 
Bayesian models in r
Bayesian models in rBayesian models in r
Bayesian models in r
 

Recently uploaded

Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...EduSkills OECD
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docxPoojaSen20
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesFatimaKhan178732
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)eniolaolutunde
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeThiyagu K
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAssociation for Project Management
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptxVS Mahajan Coaching Centre
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxSayali Powar
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 

Recently uploaded (20)

Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
Presentation by Andreas Schleicher Tackling the School Absenteeism Crisis 30 ...
 
mini mental status format.docx
mini    mental       status     format.docxmini    mental       status     format.docx
mini mental status format.docx
 
Separation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and ActinidesSeparation of Lanthanides/ Lanthanides and Actinides
Separation of Lanthanides/ Lanthanides and Actinides
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
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
 
Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)Software Engineering Methodologies (overview)
Software Engineering Methodologies (overview)
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
APM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across SectorsAPM Welcome, APM North West Network Conference, Synergies Across Sectors
APM Welcome, APM North West Network Conference, Synergies Across Sectors
 
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions  for the students and aspirants of Chemistry12th.pptxOrganic Name Reactions  for the students and aspirants of Chemistry12th.pptx
Organic Name Reactions for the students and aspirants of Chemistry12th.pptx
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptxPOINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
POINT- BIOCHEMISTRY SEM 2 ENZYMES UNIT 5.pptx
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 

R workshop iii -- 3 hours to learn ggplot2 series