#' @title Plot the structure of Ellenberg's moisture indicator
#'
#'@description This function plots the structure of Ellenberg's moisture indicator in flora.
#'1 represents species of dry soils, 5 - moderatly moisture soils, 10 - wet soils and 12 - aquatic species (e.g. Hottonia palustris).
#'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_m=function(co){
gr=c(1:12,"x")
socekile=function(x)100*(length(which(co$M==gr[x]))/length(co$M))
df=data.frame(socek=factor(gr,lev=gr),sh=sapply(1:13,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 moisture indicator")
+ggplot2:::theme(axis.text.x = ggplot2:::element_text(colour="black",size=12)))}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.