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 trying to create plots for high-intensity features similar to how you have done at the bottom of the Isotope Detection documentation. However, my plots are not coming out correct and I suspect that I am not using the correct values in the low = [] and high = [] parts of the feature = deimos.slice() function.
From the example provided, I can see that 758.570374 in the function corresponds to the m/z values for the feature with index 382. Unfortunately, I cannot see where the 0.5, 34.4, 0.75, 5.116775, 36.5, and 2 values come from in this data or in the method. Would you be able to explain where these come from, please?
So the by keyword signals what dimensions we're slicing by. Accordingly, low represents the lower bound for each dimension, and high the upper bound. In the above, we are thus slicing the data between ~758 and ~767 in m/z, between 34.4 and 36.5 ms in drift time, and between 0.75 and 2 minutes in retention time.
In the example, these values were selected based on inspecting the data: this particular feature spans these ranges in each dimension. Hope that helps!
Thanks so much for your explanation, it helps a lot. Between that, as well as the example code for the Peak Detection steps where the equivalent graphics are also made, this issue seems to be fixed now.
Hi Sean,
Hope you are keeping well?
I am trying to create plots for high-intensity features similar to how you have done at the bottom of the Isotope Detection documentation. However, my plots are not coming out correct and I suspect that I am not using the correct values in the
low = []
andhigh = []
parts of thefeature = deimos.slice()
function.From the example provided, I can see that
758.570374
in the function corresponds to the m/z values for the feature with index 382. Unfortunately, I cannot see where the0.5
,34.4
,0.75
,5.116775
,36.5
, and2
values come from in this data or in the method. Would you be able to explain where these come from, please?The whole function for reference:
Any help would be much appreciated.
Kind regards,
Jessica
The text was updated successfully, but these errors were encountered: