Skip to content

Commit

Permalink
#71 typo
Browse files Browse the repository at this point in the history
  • Loading branch information
cpanse committed Mar 19, 2021
1 parent 2bb9d4f commit 194531e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/rawDiag.R
Original file line number Diff line number Diff line change
Expand Up @@ -984,7 +984,7 @@ PlotTicBasepeak <- function(x, method = 'trellis'){
df <- x %>%
dplyr::filter_at(vars("MSOrder"), any_vars( . == "Ms")) %>%
dplyr::select_at(vars("StartTime", "TIC", "BasePeakIntensity", "filename")) %>%
dplyr::rename_at(vars("BasePeakIntensity"), liast(~ as.character("Base_Peak"))) %>%
dplyr::rename_at(vars("BasePeakIntensity"), list(~ as.character("Base_Peak"))) %>%
#dplyr::rename_at(vars("BasePeakIntensity"), funs(as.character("Base_Peak"))) %>%
tidyr::gather(key = "Type", value = "Intensity", c("TIC", "Base_Peak"))
df$Type <- factor(df$Type, levels = c("TIC", "Base_Peak"))
Expand Down

0 comments on commit 194531e

Please sign in to comment.