Data Preparation
Last updated
Last updated
Multi table data is present in multiple tables that each have rows and columns. The tables are connected to each other through foreign and primary key references.
Before you begin creating synthetic data, it's important to have your data ready in the right format:
Data, a dictionary that maps every table name to a pandas DataFrame object containing the actual data
Metadata, a object that describes your table. It includes the data types in each column, keys and the connections between tables.
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.