You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am creating very fine-grained histograms of timestamps and discovered that when the bin size is too small the plot just silently omits parts of the data. In the example below I create hourly timestamps for one day and then plot a histogram of bin size 10s. With this bin size only the hours 12am to 1pm get displayed. When increasing the bin size to 20s, all 25 timestamps are plotted.
No: there are 25 timestamps in the dataset, but only 14 are displayed. You can check this by increasing bin.size.s to 20 or by hist(as.POSIXct(ts, origin = "1970-01-01"), breaks = "mins").
I am creating very fine-grained histograms of timestamps and discovered that when the bin size is too small the plot just silently omits parts of the data. In the example below I create hourly timestamps for one day and then plot a histogram of bin size 10s. With this bin size only the hours 12am to 1pm get displayed. When increasing the bin size to 20s, all 25 timestamps are plotted.
I am using R 3.3.3 and plotly 4.6.0.
The text was updated successfully, but these errors were encountered: