mirror of
https://github.com/msberends/AMR.git
synced 2025-08-19 00:53:21 +02:00
.github
PythonPackage
R
data
data-raw
inst
man
figures
AMR-deprecated.Rd
AMR-options.Rd
AMR.Rd
WHOCC.Rd
WHONET.Rd
ab_from_text.Rd
ab_property.Rd
add_custom_antimicrobials.Rd
add_custom_microorganisms.Rd
age.Rd
age_groups.Rd
antibiogram.Rd
antibiotics.Rd
antimicrobial_selectors.Rd
as.ab.Rd
as.av.Rd
as.disk.Rd
as.mic.Rd
as.mo.Rd
as.sir.Rd
atc_online.Rd
av_from_text.Rd
av_property.Rd
availability.Rd
bug_drug_combinations.Rd
clinical_breakpoints.Rd
count.Rd
custom_eucast_rules.Rd
dosage.Rd
eucast_rules.Rd
example_isolates.Rd
example_isolates_unclean.Rd
export_ncbi_biosample.Rd
first_isolate.Rd
g.test.Rd
get_episode.Rd
ggplot_pca.Rd
ggplot_sir.Rd
guess_ab_col.Rd
intrinsic_resistant.Rd
italicise_taxonomy.Rd
join.Rd
key_antimicrobials.Rd
kurtosis.Rd
like.Rd
mdro.Rd
mean_amr_distance.Rd
microorganisms.Rd
microorganisms.codes.Rd
microorganisms.groups.Rd
mo_matching_score.Rd
mo_property.Rd
mo_source.Rd
pca.Rd
plot.Rd
proportion.Rd
random.Rd
resistance_predict.Rd
skewness.Rd
top_n_microorganisms.Rd
translate.Rd
pkgdown
tests
vignettes
.Rbuildignore
.gitignore
AMR.Rproj
CRAN-SUBMISSION
DESCRIPTION
LICENSE
NAMESPACE
NEWS.md
README.md
_pkgdown.yml
codecov.yml
cran-comments.md
index.md
logo.svg
35 lines
1.1 KiB
R
35 lines
1.1 KiB
R
% Generated by roxygen2: do not edit by hand
|
|
% Please edit documentation in R/kurtosis.R
|
|
\name{kurtosis}
|
|
\alias{kurtosis}
|
|
\alias{kurtosis.default}
|
|
\alias{kurtosis.matrix}
|
|
\alias{kurtosis.data.frame}
|
|
\title{Kurtosis of the Sample}
|
|
\usage{
|
|
kurtosis(x, na.rm = FALSE, excess = FALSE)
|
|
|
|
\method{kurtosis}{default}(x, na.rm = FALSE, excess = FALSE)
|
|
|
|
\method{kurtosis}{matrix}(x, na.rm = FALSE, excess = FALSE)
|
|
|
|
\method{kurtosis}{data.frame}(x, na.rm = FALSE, excess = FALSE)
|
|
}
|
|
\arguments{
|
|
\item{x}{a vector of values, a \link{matrix} or a \link{data.frame}}
|
|
|
|
\item{na.rm}{a \link{logical} to indicate whether \code{NA} values should be stripped before the computation proceeds}
|
|
|
|
\item{excess}{a \link{logical} to indicate whether the \emph{excess kurtosis} should be returned, defined as the kurtosis minus 3.}
|
|
}
|
|
\description{
|
|
Kurtosis is a measure of the "tailedness" of the probability distribution of a real-valued random variable. A normal distribution has a kurtosis of 3 and a excess kurtosis of 0.
|
|
}
|
|
\examples{
|
|
kurtosis(rnorm(10000))
|
|
kurtosis(rnorm(10000), excess = TRUE)
|
|
}
|
|
\seealso{
|
|
\code{\link[=skewness]{skewness()}}
|
|
}
|