dataset2table
Convert dataset array to table
Syntax
Description
Examples
Load the sample data, which contains nutritional information for 77 cereals.
load cereal;
Create a dataset array containing the calorie, protein, fat, and name data for the first five cereals. Label the variables.
Calories = Calories(1:5);
Protein = Protein(1:5);
Fat = Fat(1:5);
Name = Name(1:5);
cereal = dataset(Calories,Protein,Fat,'ObsNames',Name)
cereal = Calories Protein Fat 100% Bran 70 4 1 100% Natural Bran 120 3 5 All-Bran 70 4 1 All-Bran with Extra Fiber 50 4 0 Almond Delight 110 2 2
cereal.Properties.VarDescription = Variables(4:6,2);
Convert the dataset array to a table.
t = dataset2table(cereal)
t=5×3 table
Calories Protein Fat
________ _______ ___
100% Bran 70 4 1
100% Natural Bran 120 3 5
All-Bran 70 4 1
All-Bran with Extra Fiber 50 4 0
Almond Delight 110 2 2
Input Arguments
Input dataset array to convert to a table, specified as a dataset
array. Each variable in ds
becomes a variable
in the output table t
.
Output Arguments
Output table, returned as a table. The table can store metadata such as descriptions, variable units, variable names, and row names. For more information, see Tables.
Version History
Introduced in R2013b
MATLAB Command
You clicked a link that corresponds to this MATLAB command:
Run the command by entering it in the MATLAB Command Window. Web browsers do not support MATLAB commands.
Seleccione un país/idioma
Seleccione un país/idioma para obtener contenido traducido, si está disponible, y ver eventos y ofertas de productos y servicios locales. Según su ubicación geográfica, recomendamos que seleccione: .
También puede seleccionar uno de estos países/idiomas:
Cómo obtener el mejor rendimiento
Seleccione China (en idioma chino o inglés) para obtener el mejor rendimiento. Los sitios web de otros países no están optimizados para ser accedidos desde su ubicación geográfica.
América
- América Latina (Español)
- Canada (English)
- United States (English)
Europa
- Belgium (English)
- Denmark (English)
- Deutschland (Deutsch)
- España (Español)
- Finland (English)
- France (Français)
- Ireland (English)
- Italia (Italiano)
- Luxembourg (English)
- Netherlands (English)
- Norway (English)
- Österreich (Deutsch)
- Portugal (English)
- Sweden (English)
- Switzerland
- United Kingdom (English)