R/wyk_l.R

Defines functions wyk_l

Documented in wyk_l

#' @title Plot the structure of Ellenberg's ligth indicator
#' 
#'@description This function plots the structure of Ellenberg's ligth indicator in flora.
#'1 represents shadow-demaning species, 9 - light-demanding species. 
#'The values may be taken from Ellenberg and Leuschner (2010) 
#'@references Ellenberg H., Leuschner C. 2010. Vegetation Mitteleuropas mit den Alpen in ökologischer, dynamischer und historischer Sicht. UTB UmgH. 
#'@param co "eco" data.frame, containing flora and species' properties
#'@export
wyk_l=function(co){
  gr=c(1:9,"x")
  socekile=function(x)100*(length(which(co$L==gr[x]))/length(co$L))
  df=data.frame(socek=factor(gr,lev=gr),sh=sapply(1:10,socekile))
  p=ggplot2:::ggplot(data=df,ggplot2:::aes(socek,sh))+ggplot2:::geom_bar(stat="identity")
  (p+ggplot2:::scale_y_continuous(name="Share [%]")+ggplot2:::scale_x_discrete("Ellenberg's light indicator")
   +ggplot2:::theme(axis.text.x = ggplot2:::element_text(colour="black",size=12)))}
mkdyderski/MKDgeobot documentation built on May 23, 2019, 1:06 a.m.