Appendix A. Glossary
This appendix is a brief glossary of technical concepts used throughout Python Data Analysis and this book.
American Standard Code for Information Interchange (ASCII) was the dominant encoding standard on the Internet until the end of 2007, with UTF-8 (8-bit Unicode) taking over. ASCII is limited to the English alphabet and has no support for other alphabets.
Analysis of variance (ANOVA) is a statistical data analysis method invented by statistician Ronald Fisher. This method partitions the data of a continuous variable using the values of one or more corresponding categorical variable to analyze variance. ANOVA is a form of linear modeling.
Anaconda is a free Python distribution for data analysis and scientific computing. It has its own package manager, conda.
The Anscombe's quartet is a classic example, which illustrates why visualizing data is important. The quartet consists of four datasets with similar statistical properties. Each dataset has a series...