I have a Tree representing a list, and I would like to plot this list. Unfortunately when I try to listplot my tree mathematica doesn't plot anything.
So, I would like to convert my tree into the list that this tree represents.
What is the function to do it ?
[edit]
to be more explicit here is my problem :
If I have a list, no problem I can plot it.

Now imagine that after some manipulation my list has been transformed in a tree, how to put this tree back to the original list to be able to plot it ?

As you can see in this second picture, the listplot doesn't work on this tree.
(here it is a simple example, in fact I have a code and at the end my list are trees, but i want to transform them into the list they represent but I don't know how to do it)



(a=b) //TreeForminstead ofa=b//TreeForm– Ray Shadow May 27 '17 at 17:47vwhen you still haveuwhich you can plot? – J. M.'s missing motivation May 27 '17 at 18:25ListPlot[{v[[1]]}]orListPlot @@ v? – kglr May 27 '17 at 18:43TreeForm[]?s = (* complicated expression here *); stree = TreeForm[s];– J. M.'s missing motivation May 27 '17 at 18:45