Borrar filtros
Borrar filtros

How can I save the figure of a classification and regression tree generated with VIEW command in Statistics Toolbox 6.1 (R2007b)?

2 visualizaciones (últimos 30 días)
I have generated a classification and regression tree in Statistics Toolbox 6.1 (R2007b) and use the VIEW command to plot it:
load fisheriris;
t = classregtree(meas,species,'names',{'SL' 'SW' 'PL' 'PW'});
view(t)
I would like to save this picture to file.

Respuesta aceptada

MathWorks Support Team
MathWorks Support Team el 15 de Mayo de 2013
It is possible to save the tree picture by using the handle of the Figure that shows the tree. First you need to ask for the handle with the VIEW method:
h = view(t);
Then you can use any of the save or print functions that work on a figure handle, for instance:
saveas(h, 'myTree.png')

Más respuestas (0)

Etiquetas

Aún no se han introducido etiquetas.

Productos


Versión

R2007b

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by