-
Notifications
You must be signed in to change notification settings - Fork 95
/
Copy pathplot_qq.Rd
44 lines (35 loc) · 1.38 KB
/
plot_qq.Rd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/plots.R
\name{plot_qq}
\alias{plot_qq}
\title{QQ plot}
\usage{
plot_qq(obj, test, test_type = "wt", which_model = "full",
sig_level = 0.1, point_alpha = 0.2, sig_color = "red",
highlight = NULL, highlight_color = "green", line_color = "blue")
}
\arguments{
\item{obj}{a \code{sleuth} object}
\item{test}{a character string denoting which beta to use for
highlighting the transcript}
\item{test_type}{either 'wt' for wald test or 'lrt' for likelihood ratio test.}
\item{which_model}{a character string denoting which model to use for the
test}
\item{sig_level}{the significance level for Fdr}
\item{point_alpha}{the alpha for the points}
\item{sig_color}{what color to make the 'significant' transcripts}
\item{highlight}{a \code{data.frame} with one column, \code{target_id}.
These points will be highlighted in the plot. if \code{NULL}, no points will
be highlighted.}
\item{highlight_color}{the color to highlight points.}
\item{line_color}{what color to make the QQ line}
}
\value{
a \code{ggplot2} object
}
\description{
Create a Q-Q plot of the test statistics. The x-axis has the
theoretical quantile you would expect from a standard normal distribution.
The y-axis has the observed quantiles. In the Wald case, it is a \code{ggplot2} version of
what you would get from \code{\link{qqnorm}} and \code{\link{qqline}}.
}