Data Preparation
Last updated
Last updated
Single table data contains rows and columns of information. Each row typically represents a new entity such as a user, transaction, or session.
Before you begin creating synthetic data, it's important to have your data ready in the right format:
Data, loaded into Python as a pandas DataFrame object, and
Metadata, a Metadata object that describes your table. It includes the data types in each column, primary keys and other identifiers.
Get started with a demo dataset or load your own data.
Create an object to describe the different columns in your data. Save it for future use.