Displaying 1 result from an estimated 1 matches for "ungap".
Did you mean:
unmap
2008 Jun 27
1
xyplot and separate abline per plot
...0 Gapped Distances 5S Between species
3 0.8133333 5228 Gapped Distances 5S Between species
4 1.2200000 0 Gapped Distances 5S Between species
5 1.6266667 9702 Gapped Distances 5S Between species
> levels(alldata$disttype)
[1] "Gapped Distances" "Ungapped Distances"
> levels(alldata$type)
[1] "Between species" "Same species"
> levels(alldata$moltype)
[1] "16S" "23S" "5S"
>
Which I plot like this:
xyplot(numbers~sqrt(breaks)|moltype+disttype, groups = type, data = alldata)
Thi...