Can someone explain the following behavior exhibited by a combination of SetDelayed, Dynamic and Histogram.
Take
example := RandomReal[{0, 100}, 100]
and compare
Dynamic@Histogram[example]
with
Dynamic@Histogram[{example}]
Use case:
I would have expected Histogram to behave similar to e.g. ListPlot i.e. compare
Dynamic@ListPlot[{example, example}]
and
Dynamic@Histogram[{example, example}]
Since Kuba noted in a comment that he can reproduce this behavior in version 10.4 but not 11: I am using Mathematica 11.0.0.0 on OS X 10.11.6




Dynamic@{Histogram[example]; First@example}andDynamic@{Histogram[{example}]; First@example}. – Jacob Akkerboom Jan 24 '17 at 15:00