Skip to content

Commit

Permalink
fixed injection time plot trend line
Browse files Browse the repository at this point in the history
  • Loading branch information
ctrachse committed Dec 5, 2017
1 parent e52a709 commit f35314c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ Type: Package
Title: Performs shiny application on bfabric data
Author: Christian Trachsel [cre, aut], Christian Panse [cre, aut]
Maintainer: Christian Trachsel<[email protected]>
Version: 0.1.49
Version: 0.1.50
Description: provides access modules and functions to interact with the FGCZ's
bfabric system. The package contains shiny applications, e.g., to allow the FGCZ user
to automatically generate a certain set of queues for thermo instruments.
Expand Down
2 changes: 1 addition & 1 deletion R/rawFileQC.R
Original file line number Diff line number Diff line change
Expand Up @@ -200,9 +200,9 @@

figure <- ggplot(x, aes(x = StartTime, y = IonInjectionTimems)) +
geom_hline(data = maxtimes, aes(yintercept = maxima), colour = "red3", linetype = "longdash") +
geom_point(shape = ".") +
geom_line(stat = "smooth", method = "gam", formula = y~s(x), colour = "deepskyblue3", se = FALSE) +
facet_grid(MSOrder~., scales = "free") +
geom_point(shape = ".") +
scale_y_continuous(breaks = scales::pretty_breaks((n = 8))) +
scale_x_continuous(breaks = scales::pretty_breaks((n = 8))) +
labs(title = "Injection time plot", subtitle = "Plotting injection time against retention time for MS and MSn level") +
Expand Down

0 comments on commit f35314c

Please sign in to comment.