Myrtaceae {ecostats}R Documentation

Species richness of Myrtaceae plants

Description

Data derived from NSW National Parks and Wildlife Service resources on species richness for members of the Myrtaceae family (eucalypts and relates species) in 1000 monitoring transects west of Sydney in the Greater Blue Mountains World Heritage Area. Also included is soil type classified into 9 categories, and a few climate variables derived from Worldclim.

Usage

data(Myrtaceae)

Format

A dataframe containing (amongst other things):

X

Easting of the site (in km).

Y

Nothing of the site (in km).

richness

Total number of Mrtaceae species observed at this site.

TMP_MAX

Annual average of daily maximum temperature (degrees Celsius).

TMP_MIN

Annual average of daily minimum temperature (degrees Celsius).

RAIN_ANN

Annual precipitation (in millimetres).

soil

Soil type, classified into nine categories.

aspect

Aspect of the site (in degrees, 0=360=due North).

Examples

data(Myrtaceae)
library(ggplot2)
ggplot(Myrtaceae, aes(x=X, y=Y))+geom_point(aes(color=richness))+
  theme_classic()+xlab("West<-->East (km)")+ylab("South<-->North (km)")+
  scale_color_gradient(low="lightgreen",high="black")+
  labs(color="Species richness [log(y+1)-scale]")+theme(legend.position="top")+
  guides(color = guide_colorbar(title.position = "top",ticks=FALSE,
                               barwidth=15,barheight=0.5))+coord_fixed()
                               

[Package ecostats version 1.1.11 Index]