SlideShare una empresa de Scribd logo
1 de 13
Graphs in R
Codes are in Blue.
For Feedback Mail me: sharmakarishma91@gmail.com
Different types of graphs
• Line Chart
• Bar Chart
• Pie Chart
• Histogram
• Extras: Graphs for
– Regression
– Association
– Neural Networks
– Factor Analysis
For Feedback Mail me: sharmakarishma91@gmail.com
Line Chart
• l<-c(3,5,8,12,15,32,56) #data
• plot(l)
• plot(l,type=“l",col="blue")
• plot(l,type="o",col="blue")
title(main="line",col.main="red",font.main="12")
• plot(l,type="o",col="blue",main="line
chart",col.main="red",font.main=180,sub="line",col.sub="pin
k",font.sub=100,xlab="range",ylab="l",xlim=c(0,15),ylim=c(0,6
0))
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
• title(main="line
chart",col.main="red",font.main=180,sub="line",col.sub="pin
k",font.sub=100,xlab="range",ylab="l",xlim=c(0,15),ylim=c(0,6
0))
• text(l,pos=4,cex=3)
• b<-c(2,4,6,13,18,35,38,60) #data
• plot(l,type="o",pch=10,col="dark green")
• lines(b,type="o",pch=22,col="maroon")
For Feedback Mail me: sharmakarishma91@gmail.com
Bar Chart
• barplot(l,main="barplot",col.main="blue",font.main=60,densi
ty=c(10,20,30,40,50,60,70),xlab="range",ylab="b")
• barplot(l,main="barplot",col.main="blue",font.main=60,col=r
ainbow(7),xlab="range",ylab="b")
• z<-c(l,b) #using the previous data l and b
• barplot(as.matrix(z),col=rainbow(7),beside=T,cex.axis=1)
• box()
• legend(0,50,c(3,5,8,12,15,32,56),cex=1,bty="n",fill=rainbow(7
))
• barplot(l,main="barplot",col.main="blue",font.main=60,col=r
ainbow(7),xlab="range",ylab="b",space=5)
For Feedback Mail me: sharmakarishma91@gmail.com
Histogram
• hist(l,col=rainbow(4),xlab="range",ylab=“frequency",main="hi
stogram",col.main="forest green",font.main=100)
For Feedback Mail me: sharmakarishma91@gmail.com
Pie chart
• pie(b,main="piechart",col.main=rainbow(1),col=rainbow(7),la
bels=c("2","4","6","13","18","35","38","60"))
For Feedback Mail me: sharmakarishma91@gmail.com
Regression
• x <- rnorm(100)
• y <- rnorm(100)
• z <- 0.2*x - 0.3*y + rnorm(100, sd=0.3)
• fit <- lm(z ~ x + y)
• plot(fit)
• install.packages(“rgl”) # from cran library
• library(rgl)
• plot3d(x,y,z, type="s", col="red", size=1)
• coefs <- coef(fit)
For Feedback Mail me: sharmakarishma91@gmail.com
Contd..
• a <- coefs["x"]
• b <- coefs["y"]
• c <- -1
• d <- coefs["(Intercept)"]
• planes3d(a, b, c, d, alpha=0.5)
For Feedback Mail me: sharmakarishma91@gmail.com
Neural Network
• nn <-
neuralnet(case~age+parity+induced+spontaneous,data=infert
, hidden=3)
• plot(nn)
• plot(nn,rep="best",col.entry.synapse = "red",col.entry =
"green",col.hidden = "blue",col.hidden.synapse =
"brown",col.out = "orange",col.out.synapse =
"magenta",col.intercept = " dark green")
For Feedback Mail me: sharmakarishma91@gmail.com
Association
• Install packages
– arules
– arulesViz
• data(Groceries) # in-built dataset in R
• rules <- apriori(Groceries, parameter=list(support=0.001,
confidence=0.5))
• plot(rules)
• plot(rules, method="matrix", measure="lift")
• plot(rules, method="matrix3d", measure="lift")
• plot(rules, method="matrix", measure=c("lift", "confidence"))
• plot(rules, method="grouped")
For Feedback Mail me: sharmakarishma91@gmail.com
Factor Analysis
• Install packages
– psych
– GPArotation
• fan=read.csv(“fa.csv”,sep=“,”,h=T)
• fanl=fa(fan)
• fa.plot(fanl)
For Feedback Mail me: sharmakarishma91@gmail.com
THANK YOU.
Reference: http://cran.r-project.org/
For Feedback Mail me: sharmakarishma91@gmail.com

Más contenido relacionado

Destacado

Artesaneando, Design Portfolio
Artesaneando, Design PortfolioArtesaneando, Design Portfolio
Artesaneando, Design PortfolioCitlalli Dunne
 
Arellano cilia taller 2
Arellano cilia taller 2Arellano cilia taller 2
Arellano cilia taller 2Cilia Arellano
 
Dealer_Application_2011.pdf
Dealer_Application_2011.pdfDealer_Application_2011.pdf
Dealer_Application_2011.pdfTim Cross
 
Ceci`S Hawaian Dream
Ceci`S Hawaian DreamCeci`S Hawaian Dream
Ceci`S Hawaian DreamMaria Filippa
 
The IMPACT of microlearning
The IMPACT of microlearningThe IMPACT of microlearning
The IMPACT of microlearningcfaisonjr
 
Linux containers-namespaces(Dec 2014)
Linux containers-namespaces(Dec 2014)Linux containers-namespaces(Dec 2014)
Linux containers-namespaces(Dec 2014)Ralf Dannert
 
The case for real time collaboration
The case for real time collaborationThe case for real time collaboration
The case for real time collaborationSei Mani
 
Social Media Strategy for Tata Docomo
Social Media Strategy for Tata DocomoSocial Media Strategy for Tata Docomo
Social Media Strategy for Tata DocomoAakriti Agarwal
 

Destacado (14)

Programa interpr et
Programa interpr etPrograma interpr et
Programa interpr et
 
Artesaneando, Design Portfolio
Artesaneando, Design PortfolioArtesaneando, Design Portfolio
Artesaneando, Design Portfolio
 
Arellano cilia taller 2
Arellano cilia taller 2Arellano cilia taller 2
Arellano cilia taller 2
 
Dealer_Application_2011.pdf
Dealer_Application_2011.pdfDealer_Application_2011.pdf
Dealer_Application_2011.pdf
 
Ceci`S Hawaian Dream
Ceci`S Hawaian DreamCeci`S Hawaian Dream
Ceci`S Hawaian Dream
 
Proxy arp
Proxy arpProxy arp
Proxy arp
 
Hypothesis testing in R
Hypothesis testing in RHypothesis testing in R
Hypothesis testing in R
 
Leben im Netz
Leben im NetzLeben im Netz
Leben im Netz
 
The IMPACT of microlearning
The IMPACT of microlearningThe IMPACT of microlearning
The IMPACT of microlearning
 
Linux containers-namespaces(Dec 2014)
Linux containers-namespaces(Dec 2014)Linux containers-namespaces(Dec 2014)
Linux containers-namespaces(Dec 2014)
 
The case for real time collaboration
The case for real time collaborationThe case for real time collaboration
The case for real time collaboration
 
Ftp connector
Ftp connectorFtp connector
Ftp connector
 
Social Media Strategy for Tata Docomo
Social Media Strategy for Tata DocomoSocial Media Strategy for Tata Docomo
Social Media Strategy for Tata Docomo
 
Galera replication
Galera replicationGalera replication
Galera replication
 

Similar a Graphs in R - Line, Bar, Pie, Histogram, Regression, Neural Networks

Exploratory data analysis using r
Exploratory data analysis using rExploratory data analysis using r
Exploratory data analysis using rTahera Shaikh
 
DrawingML Subject: Shape Properties & Effects
DrawingML Subject: Shape Properties & EffectsDrawingML Subject: Shape Properties & Effects
DrawingML Subject: Shape Properties & EffectsShawn Villaron
 
Data analysis with R
Data analysis with RData analysis with R
Data analysis with RShareThis
 
Chart and graphs in R programming language
Chart and graphs in R programming language Chart and graphs in R programming language
Chart and graphs in R programming language CHANDAN KUMAR
 
Exploratory Data Analysis
Exploratory Data AnalysisExploratory Data Analysis
Exploratory Data AnalysisUmair Shafique
 
Lectures r-graphics
Lectures r-graphicsLectures r-graphics
Lectures r-graphicsetyca
 

Similar a Graphs in R - Line, Bar, Pie, Histogram, Regression, Neural Networks (9)

R training5
R training5R training5
R training5
 
Exploratory data analysis using r
Exploratory data analysis using rExploratory data analysis using r
Exploratory data analysis using r
 
DrawingML Subject: Shape Properties & Effects
DrawingML Subject: Shape Properties & EffectsDrawingML Subject: Shape Properties & Effects
DrawingML Subject: Shape Properties & Effects
 
Data analysis with R
Data analysis with RData analysis with R
Data analysis with R
 
Chart and graphs in R programming language
Chart and graphs in R programming language Chart and graphs in R programming language
Chart and graphs in R programming language
 
Exploratory Data Analysis
Exploratory Data AnalysisExploratory Data Analysis
Exploratory Data Analysis
 
Lectures r-graphics
Lectures r-graphicsLectures r-graphics
Lectures r-graphics
 
Bill howe 8_graphs
Bill howe 8_graphsBill howe 8_graphs
Bill howe 8_graphs
 
FINAL_TAKE_HOME
FINAL_TAKE_HOMEFINAL_TAKE_HOME
FINAL_TAKE_HOME
 

Último

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsMemoori
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubKalema Edgar
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 3652toLead Limited
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piececharlottematthew16
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationSlibray Presentation
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebUiPathCommunity
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Enterprise Knowledge
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationRidwan Fadjar
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr BaganFwdays
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Commit University
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesZilliz
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLScyllaDB
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Patryk Bandurski
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Manik S Magar
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek SchlawackFwdays
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Scott Keck-Warren
 

Último (20)

AI as an Interface for Commercial Buildings
AI as an Interface for Commercial BuildingsAI as an Interface for Commercial Buildings
AI as an Interface for Commercial Buildings
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Unleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding ClubUnleash Your Potential - Namagunga Girls Coding Club
Unleash Your Potential - Namagunga Girls Coding Club
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365Ensuring Technical Readiness For Copilot in Microsoft 365
Ensuring Technical Readiness For Copilot in Microsoft 365
 
Story boards and shot lists for my a level piece
Story boards and shot lists for my a level pieceStory boards and shot lists for my a level piece
Story boards and shot lists for my a level piece
 
Connect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck PresentationConnect Wave/ connectwave Pitch Deck Presentation
Connect Wave/ connectwave Pitch Deck Presentation
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Dev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio WebDev Dives: Streamline document processing with UiPath Studio Web
Dev Dives: Streamline document processing with UiPath Studio Web
 
Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024Designing IA for AI - Information Architecture Conference 2024
Designing IA for AI - Information Architecture Conference 2024
 
My Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 PresentationMy Hashitalk Indonesia April 2024 Presentation
My Hashitalk Indonesia April 2024 Presentation
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan"ML in Production",Oleksandr Bagan
"ML in Production",Oleksandr Bagan
 
Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!Nell’iperspazio con Rocket: il Framework Web di Rust!
Nell’iperspazio con Rocket: il Framework Web di Rust!
 
Vector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector DatabasesVector Databases 101 - An introduction to the world of Vector Databases
Vector Databases 101 - An introduction to the world of Vector Databases
 
Developer Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQLDeveloper Data Modeling Mistakes: From Postgres to NoSQL
Developer Data Modeling Mistakes: From Postgres to NoSQL
 
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
Integration and Automation in Practice: CI/CD in Mule Integration and Automat...
 
Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!Anypoint Exchange: It’s Not Just a Repo!
Anypoint Exchange: It’s Not Just a Repo!
 
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
"Subclassing and Composition – A Pythonic Tour of Trade-Offs", Hynek Schlawack
 
Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024Advanced Test Driven-Development @ php[tek] 2024
Advanced Test Driven-Development @ php[tek] 2024
 

Graphs in R - Line, Bar, Pie, Histogram, Regression, Neural Networks