Recent Releases of vegtable
vegtable - vegtable 0.1.8
Handling vegetation data sets.
- HTML
Published by kamapu about 3 years ago
vegtable - Handling Vegetation Data Sets
A new interesting feature is the function count_taxa(), which is already defined in the last version of the package taxlist.
Thus for counting taxa in the taxonomic list included in an object of class vegtable, than try:
```r library(vegtable)
counttaxa(Kenyaveg@species) counttaxa(Kenyaveg@species, level="species") ```
The same function applied to the whole object will only consider records of taxa in the plot observations:
r
count_taxa(Kenya_veg)
count_taxa(Kenya_veg, level="species")
count_taxa(Kenya_veg, level="species", include_lower=TRUE)
And last but not least, statistics per plot can be calculated by using the formula method:
r
count_taxa(species ~ ReleveID, data=Kenya_veg[1:5,], include_lower=TRUE)
count_taxa(genus ~ ReleveID, data=Kenya_veg[1:5,], include_lower=TRUE)
count_taxa(family ~ ReleveID, data=Kenya_veg[1:5,], include_lower=TRUE)
- HTML
Published by kamapu about 7 years ago
vegtable - Adapted to new 'taxlist' version
This version is adapted to current version of package taxlist v0.1.4.
- HTML
Published by kamapu almost 8 years ago
vegtable - Newest CRAN version
New features in vegtable:
- function
subsetalso working in slots of includedtaxlistobjectr data(Kenya_veg) Ochna <- subset(Kenya_veg, grepl("Ochna insculpta", TaxonName), slot="taxonNames") summary(Ochna) - function
cleandoes not touch slotspecies function
crosstableaccess also to taxon traitsr Cross <- transform(Kenya_veg, to="percentage") Cross <- crosstable(percentage ~ ReleveID + GENUS, Cross, sum, na_to_zero=TRUE)a method for function
aggregater Table <- aggregate(ReleveID ~ AcceptedName, Kenya_veg, length) head(Table[order(Table$ReleveID, decreasing=TRUE),])new argument
use_nasfor functioncrosstableslot
layersadded tovegtableobjectsr slotNames(Kenya_veg)
- HTML
Published by kamapu about 8 years ago
vegtable - First version on CRAN
For more details, visit https://github.com/kamapu/vegtable/.
Some applications are also available at https://kamapu.github.io/workshopsfreiburg2017.html.
For the installation of last CRAN version:
r
install.packages("vegtable", dependencies=TRUE)
- HTML
Published by kamapu over 8 years ago
vegtable - vegtables: preliminary release
vegtables is an R-package to load and handle data from Turboveg databases.
- HTML
Published by kamapu almost 10 years ago