Values.SyntheticDataColumnPropertiesSourceProperties that define how a specific data column should be handled during synthetic data generation, including its name, type, and role in predictive modeling.
type nonrec t = {columnName : SyntheticDataColumnName.t option;The name of the data column as it appears in the dataset.
*)columnType : SyntheticDataColumnType.t option;The data type of the column, which determines how the synthetic data generation algorithm processes and synthesizes values for this column.
*)isPredictiveValue : Boolean.t option;Indicates if this column contains predictive values that should be treated as target variables in machine learning models. This affects how the synthetic data generation preserves statistical relationships.
*)}val to_value :
t ->
[> `Structure of
(string
* [> `Boolean of Boolean.t
| `Enum of string
| `String of SyntheticDataColumnName.t ])
list ]