Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upData view fails to display leaf nodes #84
Comments
|
@wch not intentional, from what I remember. BTW. Just noticed that switching between horizontal and vertical states is introducing jitter in the UI, not sure if this is already being tracked. |
(This is related to #83.) For example, see http://rpubs.com/wch/294546
In the flame graph, you can see that there are seven time samples. All of the samples have
runifon top of the call stack, as can be seen in the flame graph. In the data viewer, however, there are no entries forrunif.Here's the code. If you run it and there happens to be a
<GC>above arunifin the flame graph, then therunifwill show up in the data viewer (but the<GC>won't).profvis({ fa <- function() { fb() } fb <- function() { runif(1e6) } fa() fb() })@javierluraschi Was this behavior intentional?