Hello R-users,
I am new to R-commands.
I have two sets of data:
x <- c(7, 7 , 8, 9, 15, 17, 18)
y <- c(7, 8, 9, 15, 17, 19, 20, 20, 25, 23, 22)
I have used 'cut' command to seperate them as follows
a <- cut(x, breaks =c(0,5,10,20,25,30))
b <- cut(y, breaks =c(0,5,10,20,25,30))
> table(a)
a
(0,5] (5,10] (10,20] (20,25] (25,30]
0 4 3 0 0
> table(b)
b
(0,5] (5,10] (10,20] (20,25] (25,30]
0 3 5 3 0
Now if I want to a single graph with both sets of data side by side for same
range.
Can some one help me regarding the above problem.
With Regards
Subhabrata Pal
[EMAIL PROTECTED]
[[alternative HTML version deleted]]
______________________________________________
[email protected] mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide! http://www.R-project.org/posting-guide.html