Description Usage Arguments Examples
Using an object from the vegdistmod::dens_obj() function. Plot a series PDF curves in a new plot window.
1 2  | 
dens.oblist | 
 An object derived from the vegdistmod::dens_obj() function.  | 
var | 
 A character string that matches one of the layer names in the source raster object.  | 
col | 
 A color vector of the same length as the dens.oblist object. Default is 'grDevices::heat.colors(length(dens.oblist))'.  | 
type | 
 A character string of value either ".kde" for a Kernel Density Estimator curve, or ".gauss" for a Gaussian (normal) curve. All other values will result in errors.  | 
l.pos | 
 Legend position. Recommend 'topleft' or 'topright'. Default is 'topleft'.  | 
l.cex | 
 cex setting for legend. Default is 0.8.  | 
w | 
 TRUE or FALSE to show weighted probability functions  | 
1 2 3 4 5 6 7 8 9  | ## Not run: 
#distr <- read.table('test_mat.txt', head=T, sep ="\t");
#OR:
data(distr); data(climondbioclim);
extr.raw = extraction(data=distr, clim= climondbioclim, schema='raw');
dens.list.raw <- dens_obj(extr.raw, clim = climondbioclim, bw = 'nrd0', n = 1024);
multiplot(dens.list.raw, names(climondbioclim[[1]]));
## End(Not run)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.