This repository was archived by the owner on Jan 30, 2025. It is now read-only.
Releases: tesselle/tabula
Releases · tesselle/tabula
v1.5.1
Update CRAN-comments
v1.5.0
Prepare for next release
v1.4.0
Prepare for next release
v1.3.0
New classes and methods
Matrix
this S4 class is now the superclass of all matrix-like classes.AbundanceMatrix
this virtual S4 class is defined as the superclass ofCountMatrix
,FrequencyMatrix
andIncidenceMatrix
.SpaceTime
this S4 class represents space-time informations.as_*()
coerce amatrix
ordata.frame
to aCountMatrix
,FrequencyMatrix
,IncidenceMatrix
,OccurrenceMatrix
orSimilarityMatrix
.date_event()
replacesdateEvent()
.date_mcd()
allows Mean Ceramic Date estimation.get_dates()
andset_dates<-
allow to extract and replace chronological informations inAbundanceMatrix
objects.plot_bertin()
andplot_ford()
replaceplotBar()
.plot_date()
replacesplotDate()
.plot_date()
gained a method forAbundanceMatrix
objects.plot_heatmap()
replacesplotMatrix()
.plot_rank()
replacesplotRank()
.plot_spot()
replacesplotSpot()
.plot_time()
produces an abundance vs. time graph.refine_dates()
andrefine_seriation()
replacerefine()
.seriate_reciprocal()
andseriate_correspondance()
replaceseriate()
.test_diversity()
allows Shannon diversity test.test_fit()
produces a Frequency Increment Test.
Bugfixes & changes
CountMatrix
,FrequencyMatrix
andIncidenceMatrix
now also contain theSpaceTime
class.- Deprecate
plotBar()
,plotMatrix()
,plotRank()
,plotSpot()
,refine()
,seriate()
. - Remove
dateEvent()
. - Empty rows/columns are removed prior to CA seriation to avoid error in
svd()
.
Enhancements
- Add the Merzbach ceramics dataset.
- The
plot_date()
method forDateModel
objects now allows to display an activity or a tempo plot.
Internals
- Reduce required R version to 3.2.
- Error handling has been revised and error messages have been harmonized.
- Refer to {ggplot2} functions using
::
(stop importing the entire package). - Use {vdiffr} to test graphical output.
- Replace
FactoMinerR::CA()
withca::ca()
(this avoids having to install all {FactoMineR} dependencies when only one function is used). - Remove {dplyr} from the imported packages, move {magrittr} to suggested packages.
Experimental
- When a
Matrix
object is first created, an identifier (UUID v4) is generated withgenerate_uuid()
. This ID is preserved when coercing to another class. This makes it possible to identify objects representing the same initial data and associate them with the results of specific computations. get_coordinates()
andset_coordinates<-
allow to extract and replace spatial informations inAbundanceMatrix
objects.get_features()
allows to convert anAbundanceMatrix
object to adata.frame
. It is intended for compatibility with the {sf} package.
v1.2.0
- ADD: Belanger and Husi (2006) dating method (#3).
- ADD: binomial co-occurrence assessment method (similarity between types).
- ADD:
SimilarityMatrix
S4 class to represent a (dis)similarity matrix. - ADD:
plotSpot
method forSimilarityMatrix
object. - ADD:
plotSpot
method forOccurrenceMatrix
object. - ADD:
[
methods for several classes. - FIX:
similarity()
now returns aSimilarityMatrix
object. - FIX:
plotBar()
does not add confidence interval by default. - FIX: add an argument to
seriate()
to pass aBootCA
object (#4). - FIX: add an optional progress bars with
pbapply
in long running functions. - FIX: deprecate useless accessors.
- FiX:
OccurrenceMatrix
now stores the number of times each pair of taxa occurs together in at least one sample.
v1.1.0
- ADD: Chao1 estimator for abundance data
- ADD: Bias-corrected Chao1 estimator
- ADD: Improved Chao1 estimator
- ADD: Chao2 estimator for replicated incidence data
- ADD: Bias-corrected Chao2 estimator
- ADD: Improved Chao2 estimator
- ADD: Abundance-based Coverage Estimator (ACE)
- ADD: Incidence-based Coverage Estimator (ICE)
- FIX: similarity() now returns a symmetric matrix
- FIX: add references in the 'Description' field of the DESCRIPTION file (#1)
- FIX: split documentation for alpha-diversity measures
- FIX: split documentation for beta-diversity measures
v1.0.0
- ADD: Brainerd-Robinson coefficient of similarity
- ADD: Zuni ceramics dataset
- ADD: Mississippi ceramics dataset
- ADD: BootCA S4 class to store partial bootstrap CA results
- ADD: extract methods for PermutationOrder and BootCA
- ADD: vignette for matrix seriation
- FIX: use stats::rmultinorm() for partial bootstrap CA
v0.9.0
First release.