Table2dataset: Difference between revisions
Jump to navigation
Jump to search
No edit summary |
No edit summary |
||
Line 20: | Line 20: | ||
===See Also=== | ===See Also=== | ||
[[dataset]], [[parsemixed]] | [[dataset]], [[dataset2table]], [[parsemixed]] |
Latest revision as of 13:39, 28 November 2022
Purpose
Convert Matlab Table Object to DatasetObject.
Synopsis
- x = table2dataset(tbl)
Description
Convert Matlab Table Object to DatasetObject. This function will attempt to make the following assignments:
- Table row names to DataSet Object row label field
- Table variable names (tbl.Properties.VariableNames) to DataSet Object column label field
- Any categorical data (example: Male or Female) to row class field
- Any date/time information to row axis scale field
- Any information in the table Properties.Despcription field it will be put in the DataSet Object .description field.
- Any information in the table Properties.UserData field it will be put in the DataSet Object .userdata field.