8.2 Explore Data
OML4Py provides methods that enable you to perform exploratory data analysis and common statistical operations.
These methods are described in the following topics.
- About the Exploratory Data Analysis Methods
 OML4Py provides methods that enable you to perform exploratory data analysis.
- Correlate Data
 Use thecorrmethod to perform Pearson, Spearman, or Kendall correlation analysis across columns where possible in anoml.DataFrameobject.
- Cross-Tabulate Data
 Use thecrosstabmethod to perform cross-column analysis of anoml.DataFrameobject and thepivot_tablemethod to convert anoml.DataFrameto a spreadsheet-style pivot table.
- Mutate Data
 In preparing data for analysis, a typical operation is to mutate data by reformatting it or deriving new columns and adding them to the data set.
- Sort Data
 Thesort_valuesfunction enables flexible sorting of anoml.DataFramealong one or more columns specified by the by argument, and returns anoml.DataFrame.
- Summarize Data
 Thedescribemethod calculates descriptive statistics that summarize the central tendency, dispersion, and shape of the data in each column.
- Date, Time, and Integer Data
 OML4Py provides the data types that enable you to manipulate date, time and integer.
Parent topic: Prepare and Explore Data