Closed sunwillrise closed 5 years ago
Hello. Thank you for implementing #16 !
I used the latools.preprocessing.split.long_file() to split my data. In my case, using total_counts didn't work well, so changed to the code a bit to use different signals from different elements. Originally, it is
latools.preprocessing.split.long_file()
total_counts
# autorange bkg, sig, trn, _ = autorange(dat['Time'], dat['total_counts'], **autorange_args)
but I wanted to use the signals of Fe. So I did
# autorange bkg, sig, trn, _ = autorange(dat['Time'], dat['rawdata']['57Fe'], **autorange_args)
Hope this helps someone!
Hello. Thank you for implementing #16 !
I used the
latools.preprocessing.split.long_file()
to split my data. In my case, usingtotal_counts
didn't work well, so changed to the code a bit to use different signals from different elements. Originally, it isbut I wanted to use the signals of Fe. So I did
Hope this helps someone!