Help:Drawing graphs: Difference between revisions
(→Answer) |
|||
Line 7: | Line 7: | ||
==Answer== | ==Answer== | ||
* Set graphical par() parameters: [http://www.statmethods.net/advgraphs/parameters.html] [https://stat.ethz.ch/R-manual/R-devel/library/graphics/html/par.html] | |||
===R-tools=== | ===R-tools=== | ||
Line 249: | Line 251: | ||
* [http://www.dagitty.net/ Dagitty for online dags] but must be done by hand | * [http://www.dagitty.net/ Dagitty for online dags] but must be done by hand | ||
* [https://rulesofreason.wordpress.com/2012/11/05/network-visualization-in-r-with-the-igraph-package/ Network visualization in R with the igraph package] | * [https://rulesofreason.wordpress.com/2012/11/05/network-visualization-in-r-with-the-igraph-package/ Network visualization in R with the igraph package] | ||
Opasnet server does not plot ''serif'' family font with igraphs for some reason. So you need to adjust the code in this way: | |||
graph <- odag() + text(family = "") | |||
plot(graph) | |||
==See also== | ==See also== |
Revision as of 09:19, 25 September 2015
Moderator:Jouni (see all) |
|
Upload data
|
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.
rlnorm
- Graph for cumulative probability distributions
Colours and ordering of bars
Google charts
This is how you can make fancy Google motion or map charts. See documentation for R package googleVis and Google's help. Note that Google has copyright in its maps, but the license to use them is very flexible and in practice free [3].
Export a graph to EPS or PDF file
This code only works on your own computer, because you cannot save files when running code in Opasnet. [4]
# Saving an .eps file setEPS() postscript("whatever.eps") plot(rnorm(100), main="Hey Some Data") dev.off() # Saving a .pdf file pdf("whatever.pdf") plot(rnorm(100), main="Hey Some Data") dev.off()
If you are using ggplot2 to generate a figure, then a
ggsave(file="name.eps", width = 7, height = 7)
will also work. It will save the last ggplot with the width and height you give (in inches).
Cumulative graphs
With ggplot, stat_ecdf() gives an empirical cumulative distribution function that sums up to 1. But if you want to get a cumulative sum of counts (that sum up to the number of observations), you need to do something else. For example, see [5].
ggplot(x,aes(x=X,color=A)) + stat_bin(data=subset(x,A=="a"),aes(y=cumsum(..count..)),geom="step")+ stat_bin(data=subset(x,A=="b"),aes(y=cumsum(..count..)),geom="step")+ stat_bin(data=subset(x,A=="c"),aes(y=cumsum(..count..)),geom="step")
Using positions
ggplot2 Quick Reference: position[6]
Position adjustments are used to adjust the position of each geom. The following position adjustments are available:
- position_identity - default of most geoms
- position_jitter - default of geom_jitter
- position_dodge - default of geom_boxplot
- position_stack - default of geom_bar==geom_histogram and geom_area
- position_fill - useful for geom_bar==geom_histogram and geom_area
Setting the Position Adjustment: To set the position adjustment of a geom, use the position parameter of the layer() function:
layer(geom="point", ..., position="jitter")
Or use the position parameter of the geom_...() function:
geom_point(..., position="jitter")
Double dots in ggplot
What are double dots eg. ..density.. in ggplot?[7]
Unlike many other languages, in R, the dot is perfectly valid in identifiers. In this case, ..count.. is an identifier. However, there is special code in ggplot2 to detect this pattern, and to strip the dots. It feels unlikely that real code would use identifiers formatted like that, and so this is a neat way to distinguish between defined and calculated aesthetics.
It is used further up above in the map_statistic function. If a calculated aesthetic is present, another data frame (one that contains e.g. the count column) is used for the plot.
The single dot . is just another identifier, defined in the plyr package. As you can see, it is a function.
Maps and GIS-based data
There are several methods to produce maps. These are described on Opasnet map.
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.
Sankey diagrams
There is no established approach to Sankey diagrams. A few packages provide with functionalities, but the usebility and user-friendliness has not been tested.
- First choice: riverplot package
- Sankeymatic for creating simple Sankey diagrams online (not R)
- Harvard tagteam: rCharts R bloggers Horse import/export: d3.js plugin
- Aaronberdanier: SankeyR function
- Riverplot (and SankeyR?)
- General Sankey diagram website
- rCharts interactive charts for R; does not work for Opasnet?
- Example Sankeys with rCharts, d3.js and igraph
Directed acyclic graphs DAGs
- Package igraph [8] First choice for dags.
- Package dagR Easy but does not organise the dag, must be done manually?
- Package gRbase (probably only works for small graphs?
- Dagitty for online dags but must be done by hand
- Network visualization in R with the igraph package
Opasnet server does not plot serif family font with igraphs for some reason. So you need to adjust the code in this way:
graph <- odag() + text(family = "") plot(graph)
See also
- Double dots in a ggplot
- Visualising distributions
- Plotting means and error bars
- Cookbook for R: Scatterplots
- Scales of x and y axes
- Add a smoothed conditional mean
- theme_grey
- Different histograms
- Scale and flip graphs with coord_cartesian. Note that coord_flip() can take coord_cartesian() parameters.
- Parameters for geom_density (adjust, fill,...)