Displaying 1 result from an estimated 1 matches for "screenhunter_01_mar".
2012 Mar 06
1
Help with plot Grouped Bar Plot by using R
...0.00%
80 0 0.00% 892 0.00%
81 0 0.00% 907 0.00%
82 0 0.00% 890 0.00%
83 0 0.00% 749 0.00%
84 0 0.00% 1134 0.00%
85 0 0.00% 1160 0.00%
86 0 0.00% 3891 0.00%
87 0 0.00% 1643 0.00%
88 0 0.00% 390 0.00%
89 0 0.00% 100 0.00%
[/code]
Desired output image
[code]
http://r.789695.n4.nabble.com/file/n4448762/ScreenHunter_01_Mar._06_12.42.jpg
[/code]
Only the first, second, and forth column is used to plot the barplot
Code that I try:
[code]
read.table("data.stats.txt", header=TRUE, sep="\t")
data <- read.table("data.stats.txt", header=TRUE)
data[,1]
data[,2]
data[,4]
[/code]
Thanks for an...