SlideShare une entreprise Scribd logo
1  sur  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

Contenu connexe

En vedette

Dealer_Application_2011.pdf
Dealer_Application_2011.pdfDealer_Application_2011.pdf
Dealer_Application_2011.pdf
Tim Cross
 
Ceci`S Hawaian Dream
Ceci`S Hawaian DreamCeci`S Hawaian Dream
Ceci`S Hawaian Dream
Maria Filippa
 

En vedette (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
 

Similaire à Graphs in R (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
 

Dernier

Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
panagenda
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Victor Rentea
 

Dernier (20)

Ransomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdfRansomware_Q4_2023. The report. [EN].pdf
Ransomware_Q4_2023. The report. [EN].pdf
 
Exploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with MilvusExploring Multimodal Embeddings with Milvus
Exploring Multimodal Embeddings with Milvus
 
ICT role in 21st century education and its challenges
ICT role in 21st century education and its challengesICT role in 21st century education and its challenges
ICT role in 21st century education and its challenges
 
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
Apidays New York 2024 - The Good, the Bad and the Governed by David O'Neill, ...
 
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 AmsterdamDEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
DEV meet-up UiPath Document Understanding May 7 2024 Amsterdam
 
Artificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : UncertaintyArtificial Intelligence Chap.5 : Uncertainty
Artificial Intelligence Chap.5 : Uncertainty
 
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ..."I see eyes in my soup": How Delivery Hero implemented the safety system for ...
"I see eyes in my soup": How Delivery Hero implemented the safety system for ...
 
Why Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire businessWhy Teams call analytics are critical to your entire business
Why Teams call analytics are critical to your entire business
 
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost SavingRepurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
Repurposing LNG terminals for Hydrogen Ammonia: Feasibility and Cost Saving
 
Boost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdfBoost Fertility New Invention Ups Success Rates.pdf
Boost Fertility New Invention Ups Success Rates.pdf
 
How to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected WorkerHow to Troubleshoot Apps for the Modern Connected Worker
How to Troubleshoot Apps for the Modern Connected Worker
 
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024Finding Java's Hidden Performance Traps @ DevoxxUK 2024
Finding Java's Hidden Performance Traps @ DevoxxUK 2024
 
[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf[BuildWithAI] Introduction to Gemini.pdf
[BuildWithAI] Introduction to Gemini.pdf
 
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
Web Form Automation for Bonterra Impact Management (fka Social Solutions Apri...
 
MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024MINDCTI Revenue Release Quarter One 2024
MINDCTI Revenue Release Quarter One 2024
 
CNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In PakistanCNIC Information System with Pakdata Cf In Pakistan
CNIC Information System with Pakdata Cf In Pakistan
 
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data DiscoveryTrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
TrustArc Webinar - Unlock the Power of AI-Driven Data Discovery
 
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
Biography Of Angeliki Cooney | Senior Vice President Life Sciences | Albany, ...
 
FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024FWD Group - Insurer Innovation Award 2024
FWD Group - Insurer Innovation Award 2024
 
AWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of TerraformAWS Community Day CPH - Three problems of Terraform
AWS Community Day CPH - Three problems of Terraform
 

Graphs in R