You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

28 lines
522 B

% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/create.R
\name{td_total_count}
\alias{td_total_count}
\alias{length.tdigest}
\title{Total items contained in the t-Digest}
\usage{
td_total_count(td)
\method{length}{tdigest}(x)
}
\arguments{
\item{td}{t-Digest object}
\item{x}{a tdigest object}
}
\value{
\code{double} containing the size of the t-Digest
}
\description{
Total items contained in the t-Digest
}
\examples{
td <- td_create(10)
td_add(td, 0, 1)
td_total_count(td)
length(td)
}