Difference between revisions of "Help:Drawing graphs"

From Testiwiki
Jump to: navigation, search
(rlnorm: calculation error corrected)
(rlnorm)
Line 88: Line 88:
 
p <- ggplot(out, aes(x = Result, linetype = Group)) +  
 
p <- ggplot(out, aes(x = Result, linetype = Group)) +  
 
stat_ecdf(size = 1.2) +  
 
stat_ecdf(size = 1.2) +  
scale_x_continuous(limits = c(0, 3)) +  
+
coord_cartesian(xlim = c(0, 3)) +  
 
theme_grey(base_size = 24) +  
 
theme_grey(base_size = 24) +  
 
labs(x = "Air exchange rate (1/h)", y = "Cumulative probability") +  
 
labs(x = "Air exchange rate (1/h)", y = "Cumulative probability") +  

Revision as of 04:03, 28 September 2013


Question

How to draw graphs in Opasnet?

Answer

R-tools

In R-tools, you have the functionalities of R available. We recommend that you use the package ggplot2 whenever possible. It is very powerful, and borrowing good ideas from others is easier if we all use the same approach. Of course, it is also possible to use plot' (a kind of basic graph) as well, but the limits come sooner. This is an example code that contains all kinds of examples with comments.

+ Show code

--# : Code seems to work, but gives the yellow errorbox saying "Removed 745 rows containing missing values (geom_point)" --Heta 12:56, 27 August 2013 (EEST)

rlnorm

Graph for cumulative probability distributions

+ Show code

GoogleDocs

GoogleDocs is the method of choice for drawing causal diagrams.

  • Make a drawing.
  • Share it with everyone with open editing.
  • Download is in png or svg format.
  • Upload the file to Opasnet and copy a link to the original Google document to the image page.
  • Use like any image.

See also