fdth

fdth is an R package for frequency distribution tables, associated histograms, and polygons for numerical and categorical variables.

CRAN status CRAN downloads CRAN checks Lifecycle: stable License: GPL-2

Key Features

Installation

Install from CRAN:

install.packages("fdth")

Install the development version from GitHub:

# install.packages("remotes")
remotes::install_github("jcfaria/fdth")

Quick Start

library(fdth)

set.seed(123)
x <- rnorm(100, mean = 20, sd = 3)

ft <- fdt(x)
ft

plot(ft)
summary(ft)

# Most frequent value (mode) from grouped data
mfv(ft)

Project Layout

Contributing

Contributions are welcome. Open an issue or submit a pull request with:

To check and build locally:

R CMD check fdth
R CMD build fdth
R CMD INSTALL fdth_X.X-X.tar.gz

Roadmap


Developed by:
Faria, J. C.; Allaman, I. B.; Jelihovschi, E. G.
Universidade Estadual de Santa Cruz - UESC
Departamento de Ciencias Exatas - DCEX
Ilheus - Bahia - Brasil