% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plotting_funtions.R
\name{groupComparisonPlots2}
\alias{groupComparisonPlots2}
\title{Plotting funcitonality for QC plots}
\usage{
groupComparisonPlots2(
  data = data,
  type = type,
  sig = 0.05,
  FCcutoff = FALSE,
  logBase.pvalue = 10,
  ylimUp = FALSE,
  ylimDown = FALSE,
  xlimUp = FALSE,
  x.axis.size = 10,
  y.axis.size = 10,
  dot.size = 3,
  text.size = 4,
  legend.size = 13,
  ProteinName = TRUE,
  colorkey = TRUE,
  numProtein = 100,
  clustering = "both",
  width = 10,
  height = 10,
  which.Comparison = "all",
  which.Protein = "all",
  address = "",
  savePDF = FALSE
)
}
\arguments{
\item{data}{'ComparisonResult' in testing output from function groupComparison.}

\item{type}{choice of visualization. "VolcanoPlot" represents volcano plot of
log fold changes and adjusted p-values for each comparison separately.
"Heatmap" represents heatmap of adjusted p-values for multiple comparisons.
"ComparisonPlot" represents comparison plot of log fold changes for multiple
comparisons per protein.}

\item{sig}{FDR cutoff for the adjusted p-values in heatmap and volcano plot.
level of significance for comparison plot. 100(1-sig)\% confidence interval
will be drawn. sig=0.05 is default.}

\item{FCcutoff}{for volcano plot or heatmap, whether involve fold change
cutoff or not. FALSE (default) means no fold change cutoff is applied for
significance analysis. FCcutoff = specific value means specific fold change
cutoff is applied.}

\item{logBase.pvalue}{for volcano plot or heatmap, (-) logarithm
transformation of adjusted p-value with base 2 or 10(default).}

\item{ylimUp}{for all three plots, upper limit for y-axis. FALSE (default)
for volcano plot/heatmap use maximum of -log2 (adjusted p-value) or -log10
(adjusted p-value). FALSE (default) for comparison plot uses maximum of
log-fold change + CI.}

\item{ylimDown}{for all three plots, lower limit for y-axis. FALSE (default)
for volcano plot/heatmap use minimum of -log2 (adjusted p-value) or -log10
(adjusted p-value). FALSE (default) for comparison plot uses minimum of
log-fold change - CI.}

\item{xlimUp}{for Volcano plot, the limit for x-axis. FALSE (default) for use
maximum for absolute value of log-fold change or 3 as default if maximum for
absolute value of log-fold change is less than 3.}

\item{x.axis.size}{size of axes labels, e.g. name of the comparisons in
heatmap, and in comparison plot. Default is 10.}

\item{y.axis.size}{size of axes labels, e.g. name of targeted proteins in
heatmap. Default is 10.}

\item{dot.size}{size of dots in volcano plot and comparison plot. Default is
3.}

\item{text.size}{size of ProteinName label in the graph for Volcano Plot.
Default is 4.}

\item{legend.size}{size of legend for color at the bottom of volcano plot.
Default is 7.}

\item{ProteinName}{for volcano plot only, whether display protein names or
not. TRUE (default) means protein names, which are significant, are displayed
next to the points. FALSE means no protein names are displayed.}

\item{colorkey}{TRUE(default) shows colorkey.}

\item{numProtein}{The number of proteins which will be presented in each
heatmap. Default is 100. Maximum possible number of protein for one heatmap
is 180.}

\item{clustering}{Determines how to order proteins and comparisons.
Hierarchical cluster analysis with Ward method(minimum variance) is
performed. 'protein' means that protein dendrogram is computed and reordered
based on protein means (the order of row is changed). 'comparison' means
comparison dendrogram is computed and reordered based on comparison means
(the order of comparison is changed). 'both' means to reorder both protein
and comparison. Default is 'protein'.}

\item{width}{width of the saved file. Default is 10.}

\item{height}{height of the saved file. Default is 10.}

\item{which.Comparison}{list of comparisons to draw plots. List can be labels
of comparisons or order numbers of comparisons from levels(data$Label), such
as levels(testResultMultiComparisons$ComparisonResult$Label). Default is
"all", which generates all plots for each protein.}

\item{which.Protein}{Protein list to draw comparison plots. List can be names
of Proteins or order numbers of Proteins from
levels(testResultMultiComparisons$ComparisonResult$Protein). Default is
"all", which generates all comparison plots for each protein.}

\item{address}{the name of folder that will store the results. Default folder
is the current working directory. The other assigned folder has to be
existed under the current working directory. An output pdf file is
automatically created with the default name of "VolcanoPlot.pdf" or
"Heatmap.pdf" or "ComparisonPlot.pdf". The command address can help to
specify where to store the file as well as how to modify the beginning of
the file name. If address=FALSE, plot will be not saved as pdf file but
showed in window.}

\item{savePDF}{Boolean input passed from user on whether or not to save the
plot to a PDF.}
}
\value{
PDF or console plot
}
\description{
General plotting code to produce all QC plots in the application
}
\examples{
data("dia_skyline_model")
groupComparisonPlots2(dia_skyline_model$ComparisonResult, type="VolcanoPlot",
                      address=FALSE)
                      
}