How can I write feature column names and data types only to excel, ie, no data. For example, take a feature reader of any type and print the column names as rows in excel, and adjacent print the data types.
Name | text
Size | int
Diameter | float
How can I write feature column names and data types only to excel, ie, no data. For example, take a feature reader of any type and print the column names as rows in excel, and adjacent print the data types.
Name | text
Size | int
Diameter | float
You can use the Schema reader to collect that information and write to Excel.
The schema will be read in a list, so you will need a ListExploder before writing.