Skip to content

Commit

Permalink
scatterplot: instead of rounding p-values, use signif()
Browse files Browse the repository at this point in the history
  • Loading branch information
jminnier committed Oct 27, 2016
1 parent 5b17d81 commit 9eafa99
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions fun-analysisres.R
Original file line number Diff line number Diff line change
Expand Up @@ -323,8 +323,8 @@ rna_scatterplot <- function(data_long, results,
paste0(group2,"_Ave",valuename,":"),round(pp_wide$g2,3),"<br>",
"Difference:",round(pp_wide$diff,3),"<br>",
"logFC:",round(pp_wide$logFC,3),"<br>",
"P.Value:",round(pp_wide$P.Value,3),"<br>",
"adj.P.Val:",round(pp_wide$adj.P.Val,3),"<br>"
"P.Value:",signif(pp_wide$P.Value,3),"<br>",
"adj.P.Val:",signif(pp_wide$adj.P.Val,3),"<br>"
)


Expand Down

0 comments on commit 9eafa99

Please sign in to comment.