[R] A plot of factor data?
Bert Gunter
gunter.berton at gene.com
Fri May 2 01:27:20 CEST 2008
?mosaicplot
-- Bert Gunter
-----Original Message-----
From: r-help-bounces at r-project.org [mailto:r-help-bounces at r-project.org] On
Behalf Of Sang Chul Choi
Sent: Thursday, May 01, 2008 4:09 PM
To: r-help at r-project.org
Subject: [R] A plot of factor data?
Hi,
I am wondering if there is a way to plot proportions of factors. I
tried to find plot functions for those but in vain.
For example, I have a data like this where column "a" has 10 of "0"s
and 15 of "1"s, and column "b" has 5 and 20.
> x <-
data
.frame
("a"=factor(c(rep(0,10),rep(1,15))),b=factor(c(rep(0,5),rep(1,20))))
> summary(x)
a b
0:10 0: 5
1:15 1:20
I want to have a plot like:
|-----|
| | <--- proportion of "0"
| |
|-----|
| |
| | <--- proportion of "1"
| |
|-----|
column "a"
|-----|
| | <--- proportion of "0"
|-----|
| |
| |
| | <--- proportion of "1"
| |
|-----|
column "b"
Is there anybody who can do this easily? I appreciate any help.
Thank you,
Sang Chul
______________________________________________
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.
More information about the R-help
mailing list