Learn R Programming

datana (version 1.0.6)

datana-package: tools:::Rd_package_title("datana")

Description

The datana package provides the datasets and functions that accompany the book "Análisis de datos con el programa estadístico R: una introducción aplicada" by Salas-Eljatib (2021, ISBN: 9789566086109). You can visit the book's website at https://eljatib.com/rlibro.

Notice that most of the available dataframes have a counterpart with column names in Spanish. For instance, the dataframe 'crown' has column names in English, but 'crown2' has column names in Spanish. Both data frames have the same data.

Arguments

Author

tools:::Rd_package_author("datana")

Maintainer: tools:::Rd_package_maintainer("datana")

Christian Salas-Eljatib is also indebted to several people who have contributed to individual data frames and functions: see credits in help pages.

Details

The package contains several datasets for exploratory data analysis in an array of disciplines. Furthermore, datana provides functions as tools for descriptive statistics and plotting.

To see the preferable citation of the package, type citation("datana").

References

Salas-Eljatib C. 2021. Análisis de datos con el programa estadístico R: una introducción aplicada. Santiago, Chile: Ediciones Universidad Mayor. ISBN: 9789566086109. https://www.buscalibre.cl/libro-analisis-de-datos-con-el-programa-estadistico-r/9789566086109/p/53775485

Examples

Run this code

##Scatter-plot and marginal histograms
data(treevolroble)
df <- treevolroble
xyhist(x=df$dbh,y=df$toth, xlab="Diameter (cm)",  ylab="Height (m)")

##Scatter-plot and box-plots 
data(fishgrowth)
df <- fishgrowth
xyboxplot(x=df$length,y=df$scale)

Run the code above in your browser using DataLab