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
The RecalList function returns a dataframe containing spaces in the column names (e.g. Mass Range). When importing the data into R, all spaces get replaced by dots (resulting in Mass.Range).
I think we should do colnames(df) <- gsub(" ", ".", colnames(df)) to ensure we get unified input
The text was updated successfully, but these errors were encountered:
KristinaGomoryova
changed the title
Adjust the function to work with input dataframe containing spaces in colnames
FindRecalSeries: Adjust the function to work with input dataframe containing spaces in colnames
Sep 9, 2024
The RecalList function returns a dataframe containing spaces in the column names (e.g.
Mass Range
). When importing the data into R, all spaces get replaced by dots (resulting inMass.Range
).I think we should do
colnames(df) <- gsub(" ", ".", colnames(df))
to ensure we get unified inputThe text was updated successfully, but these errors were encountered: