Data Preparation
Sequential data represents ordered records, such as in a timeseries. The entire table may contain records for a single entity (such as a user or patient). Alternatively, your table may also contain multiple, independent sequences belonging to different entities.
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 Metadata object that describes your table. It includes the data types in each column, keys and other identifiers.
Learn More
Last updated