# plot the number of events with respect to tau in different radial distancesj_events_taus =60:-10:20.|> load_tau |> x ->reduce(vcat, x);specs =data(j_events_taus) *mapping(:tau, row=:r) *histogram()draw(specs, facet=(; linkyaxes=:none))
Code
# get unique events defined by the starting time and ending timecols = [:"t.d_start", :"t.d_end"]println("Number of events: ", size(j_events_taus, 1))j_events_taus_u =unique(j_events_taus, cols)println("Number of unique events: ", size(j_events_taus_u, 1))
Number of events: 129460
Number of unique events: 88679