plot.population: Default Plotting Statement for an Animal Population

Description Usage Arguments See Also Examples

Description

This function generates a graphical representation of the specified 'population´ object.

Usage

1
2
        plot.population(pop, show.sizes = TRUE, show.exps = TRUE, dsf = 0.75, group.col = "black",
                        type="details", title = "Group locations")

Arguments

pop

object of class 'population´.

show.sizes

if true different animal group sizes are shown as dots of different sizes.

show.exps

if true different group exposures are shown in different shading.

dsf

enlargement factor for group dots.

group.col

colour for group dots.

type

If "details" plots group size distribution, exposure distribution and locations. If "locations" shows a large plot of group locations.

title

the title given to the population plot

See Also

setpars.population, generate.population summary.population

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
reg<-generate.region(x.length = 50, y.width = 80)
     
dens <- generate.density(reg)
pop.pars<-setpars.population(reg, density.pop = dens, number.groups = 100, size.method = "poisson",
                             size.min = 1, size.max = 5, size.mean = 1, exposure.method = "beta",
                             exposure.min = 2, exposure.max = 10, exposure.mean = 6, exposure.shape = 1)
pop<-generate.population(pop.pars)

#Try the following one at a time to see the options available
plot(pop)                           	# default plot
plot(pop, type="locations")             # only plots group locations
plot(pop, show.sizes = FALSE)        	# ignore group size values
plot(pop, show.exps = FALSE)           	# ignore group exposure values
plot(pop, dsf = 0.5)                	# decrease dot sizes

dill/wisp documentation built on May 15, 2019, 8:31 a.m.