search for: avgwt

Displaying 1 result from an estimated 1 matches for "avgwt".

Did you mean: agwt
2008 Jun 23
1
ggplot2-barplot
...all: I have been using ggplot2 graphics for quite some time now and I really like it. However, I haven't used barplots enough to understand the arquitecture behind it. Can someone show me how to make this simple barplot graph with ggplot2? I want "PondName" along the x axis and "avgWt" along the Y axis which represents the avgWt by each Pond. PondName avgWt Pond01 21.5 Pond02 17.8 Pond03 17.8 Pond04 17.8 Pond05 16.375 Pond06 21.5 Pond07 21.5 Using sigmaplot or Excel is a simple task but I can't get it to work with ggplot2. I was trying: qplot(PondName,data=mydata,ge...