Hi all, may i know is it possible to plot a graph by first letter? for example: Name: Age: Angel 20 Amelia 20 Bernard 19 Stephanie 20 Vanessa 22 Angeline 23 Camel 21 If I want to plot the name started with letter 'A' and their Angel, how is it possible to plot it? Thanks. -- View this message in context: http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266.html Sent from the R help mailing list archive at Nabble.com.
plot graph by first letter
6 messages · imnew, Sarah Goslee, John Kane +1 more
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120712/74fed858/attachment.ksh>
I really am not sure of the question but perhaps ?order for a start? John Kane Kingston ON Canada
-----Original Message----- From: jubileee at live.com.sg Sent: Thu, 12 Jul 2012 01:15:26 -0700 (PDT) To: r-help at r-project.org Subject: [R] plot graph by first letter Hi all, may i know is it possible to plot a graph by first letter? for example: Name: Age: Angel 20 Amelia 20 Bernard 19 Stephanie 20 Vanessa 22 Angeline 23 Camel 21 If I want to plot the name started with letter 'A' and their Angel, how is it possible to plot it? Thanks. -- View this message in context: http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266.html Sent from the R help mailing list archive at Nabble.com.
______________________________________________ R-help at r-project.org mailing list https://stat.ethz.ch/mailman/listinfo/r-help PLEASE do read the posting guide http://www.R-project.org/posting-guide.html and provide commented, minimal, self-contained, reproducible code.
____________________________________________________________ FREE ONLINE PHOTOSHARING - Share your photos online with your friends and family! Visit http://www.inbox.com/photosharing to find out more!
Hi,
Try this:
dat1<-read.table(text="
?Name????????????????????? Age
?Angel??????????????????????? 20
?Amelia????????????????????? 20
?Bernard????????????????? 19
?Stephanie????????????? 20
?Vanessa????????????????? 22
?Angeline????????????????? 23
?Camel????????????????????? 21
?",sep="",header=TRUE)
?dat2<-dat1[grepl("[A].*",dat1$Name),]
?dat2
????? Name Age
1??? Angel? 20
2?? Amelia? 20
6 Angeline? 23
rownames(dat2)<-1:nrow(dat2)
#Now you might be okay to plot.
?plot()
A.K.
----- Original Message -----
From: imnew <jubileee at live.com.sg>
To: r-help at r-project.org
Cc:
Sent: Thursday, July 12, 2012 4:15 AM
Subject: [R] plot graph by first letter
Hi all, may i know is it possible to plot a graph by first letter?
for example:
Name:? ? ? ? ? ? ? ? ? ? ? Age:
Angel? ? ? ? ? ? ? ? ? ? ? ? 20
Amelia? ? ? ? ? ? ? ? ? ? ? 20
Bernard? ? ? ? ? ? ? ? ? 19
Stephanie? ? ? ? ? ? ? 20
Vanessa? ? ? ? ? ? ? ? ? 22
Angeline? ? ? ? ? ? ? ? ? 23
Camel? ? ? ? ? ? ? ? ? ? ? 21
If I want to plot the name started with letter 'A' and their Angel, how is
it possible to plot it?
Thanks.
--
View this message in context: http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266.html
Sent from the R help mailing list archive at Nabble.com.
______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
An embedded and charset-unspecified text was scrubbed... Name: not available URL: <https://stat.ethz.ch/pipermail/r-help/attachments/20120712/b0a25718/attachment.pl>
Hello,
This information is new. ?Are you able to import data from access?
A.K.
----- Original Message -----
From: imnew <jubileee at live.com.sg>
To: r-help at r-project.org
Cc:
Sent: Thursday, July 12, 2012 9:52 PM
Subject: Re: [R] plot graph by first letter
Hi, for my dataset is actually retrieve from a access file not a textfile.thanks
Date: Thu, 12 Jul 2012 11:58:30 -0700
From: ml-node+s789695n4636343h76 at n4.nabble.com
To: jubileee at live.com.sg
Subject: Re: plot graph by first letter
??? Hi,
Try this:
dat1<-read.table(text="
Name? ? ? ? ? ? ? ? ? ? ? Age
Angel? ? ? ? ? ? ? ? ? ? ? ? 20
Amelia? ? ? ? ? ? ? ? ? ? ? 20
Bernard? ? ? ? ? ? ? ? ? 19
Stephanie? ? ? ? ? ? ? 20
Vanessa? ? ? ? ? ? ? ? ? 22
Angeline? ? ? ? ? ? ? ? ? 23
Camel? ? ? ? ? ? ? ? ? ? ? 21
",sep="",header=TRUE)
dat2<-dat1[grepl("[A].*",dat1$Name),]
dat2
? ? ? Name Age
1? ? Angel? 20
2? Amelia? 20
6 Angeline? 23
rownames(dat2)<-1:nrow(dat2)
#Now you might be okay to plot.
?plot()
A.K.
----- Original Message -----
From: imnew <[hidden email]>
To: [hidden email]
Cc:
Sent: Thursday, July 12, 2012 4:15 AM
Subject: [R] plot graph by first letter
Hi all, may i know is it possible to plot a graph by first letter?
for example:
Name:? ? ? ? ? ? ? ? ? ? ? Age:
Angel? ? ? ? ? ? ? ? ? ? ? ? 20
Amelia? ? ? ? ? ? ? ? ? ? ? 20
Bernard? ? ? ? ? ? ? ? ? 19
Stephanie? ? ? ? ? ? ? 20
Vanessa? ? ? ? ? ? ? ? ? 22
Angeline? ? ? ? ? ? ? ? ? 23
Camel? ? ? ? ? ? ? ? ? ? ? 21
If I want to plot the name started with letter 'A' and their Angel, how is
it possible to plot it?
Thanks.
--
View this message in context: http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266.html
Sent from the R help mailing list archive at Nabble.com.
______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
______________________________________________
[hidden email] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.
???
???
???
???
???
??? ??? If you reply to this email, your message will be added to the discussion below:
??? ??? http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266p4636343.html
???
???
??? ???
??? ??? To unsubscribe from plot graph by first letter, click here.
??? ??? NAML
??? ??? ??? ??? ? ??? ??? ?
--
View this message in context: http://r.789695.n4.nabble.com/plot-graph-by-first-letter-tp4636266p4636383.html
Sent from the R help mailing list archive at Nabble.com.
??? [[alternative HTML version deleted]]
______________________________________________
R-help at r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.