plot.Niche {galgo} | R Documentation |
Plots information about niche object. See arguments for details.
## S3 method for class 'Niche' plot(x, y, type=c("chromosomes", "fitness"), col=1, pch=19, horiz=TRUE, main="", xlab="", ylab="", chromosome=NULL, chromosome.chr="U", chromosomes=NULL, ...)
type |
The type of plot. |
horiz |
Exchange the default choice of axis when |
main,xlab,
ylab,col,pch |
|
chromosome |
An additional chromosome for comparison. |
chromosome.chr |
Explicit character for additional chromosome. |
chromosomes |
Use the specific list of chromosomes instead of the original |
... |
Other user named values to include in the object. |
Returns nothing.
Victor Trevino. Francesco Falciani Group. University of Birmingham, U.K. http://www.bip.bham.ac.uk/bioinf
Goldberg, David E. 1989 Genetic Algorithms in Search, Optimization and Machine Learning. Addison-Wesley Pub. Co. ISBN: 0201157675
For more information see Niche
.
cr <- Chromosome(genes=newCollection(Gene(shape1=1, shape2=100),5)) cr ni <- Niche(chromosomes=newRandomCollection(cr, 10)) ni plot(ni, main="My Niche") plot(ni, type="fitness")