Displaying 1 result from an estimated 1 matches for "diffrenciate".
Did you mean:
differenciate
2007 Nov 21
1
Manipulating x axis in stripchart
...l=TRUE, group.names=c('A','A','A'))
stripchart(len[supp=='OJ']~dose[supp=='OJ'], add=TRUE,
vertical=TRUE, at=c(1:3)+.1,
group.names=c('B','B','B'))
As you can read from the code above, I wanted to add
the 'B' to the x axis to diffrenciate each pair of
strips from each other. But only the 'A's appear.
I tried something like this too, but now '.5','1' and
'2' along with the 'A' and 'B'.
attach(ToothGrowth)
stripchart(len[supp=='VC']~dose[supp=='VC'],
vertical=TRUE)
axi...