| Statistics Toolbox™ | ![]() |
set(A)
set(A,PropertyName)
A = set(A,PropertyName,PropertyValue,...)
set(A) displays all properties of the dataset array A and their possible values.
set(A,PropertyName) displays possible values for the property specified by the string PropertyName.
A = set(A,PropertyName,PropertyValue,...) sets property name/value pairs.
Create a dataset array from Fisher's iris data and add a description:
load fisheriris
NumObs = size(meas,1);
NameObs = strcat({'Obs'},num2str((1:NumObs)','%d'));
iris = dataset({nominal(species),'species'},...
{meas,'SL','SW','PL','PW'},...
'ObsNames',NameObs);
iris = set(iris,'Description','Fisher''s Iris Data');
get(iris)
Description: 'Fisher's Iris Data'
Units: {}
DimNames: {'Observations' 'Variables'}
UserData: []
ObsNames: {150x1 cell}
VarNames: {'species' 'SL' 'SW' 'PL' 'PW'}![]() | sequentialfs | setlabels | ![]() |
| © 1984-2008- The MathWorks, Inc. - Site Help - Patents - Trademarks - Privacy Policy - Preventing Piracy - RSS |