Sampling
After you are finished with modeling, your can use your synthesizer to generate and save synthetic data.
synthetic_data = synthesizer.sample(num_rows=1_000_000)
# save the data as a CSV
synthetic_data.to_csv('synthetic_data.csv', index=False)
Single table synthesizers can support multiple sampling needs.
Last modified 11d ago