Skip to content

Commit

Permalink
fix truncated lines in documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
weltybiostat committed Nov 23, 2020
1 parent 740e5c0 commit b37f4b3
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions R/plotman.R
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,8 @@
#' # Use leukstats data
#' data(leukstats)
#'
#' # ID number on the x-axis, delta-gap on the y-axis, using an interval null hypothesis of (-0.3, 0.3) for the log mean difference in expression levels (fold change).
#' # ID number on the x-axis, delta-gap on the y-axis, using an interval null hypothesis of
#' # (-0.3, 0.3) for the log mean difference in expression levels (fold change).
#' plotman(est.lo=leukstats$ci.lo, est.hi=leukstats$ci.hi,
#' null.lo=-0.3, null.hi=0.3,
#' set.order=NA,
Expand All @@ -62,7 +63,9 @@
#' x.lab="Position (ID)",
#' legend.on=TRUE)
#'
#' # ID number on the x-axis, -log10(classical p-value) on the y-axis, using an interval null hypothesis of (-0.3, 0.3) for the log mean difference in expression levels (fold change).
#' # ID number on the x-axis, -log10(classical p-value) on the y-axis, using an interval
#' # null hypothesis of (-0.3, 0.3) for the log mean difference in expression levels
#' # (fold change).
#' plotman(est.lo=leukstats$ci.lo, est.hi=leukstats$ci.hi,
#' null.lo=-0.3, null.hi=0.3,
#' set.order=NA,
Expand All @@ -75,7 +78,9 @@
#' x.lab="Position (ID)",
#' legend.on=TRUE)
#'
#' # Second-generation p-value (SGPV) on the x-axis, -log10(classical p-value) on the y-axis, using an interval null hypothesis of (-0.3, 0.3) for the log mean difference in expression levels (fold change).
#' # Second-generation p-value (SGPV) on the x-axis, -log10(classical p-value) on the
#' # y-axis, using an interval null hypothesis of (-0.3, 0.3) for the log mean difference
#' # in expression levels (fold change).
#' plotman(est.lo=leukstats$ci.lo, est.hi=leukstats$ci.hi,
#' null.lo=-0.3, null.hi=0.3,
#' set.order="sgpv",
Expand Down

0 comments on commit b37f4b3

Please sign in to comment.