0
votes
2answers
55 views

Add sub text to viewport

I would like to add sub text (a textGrob) to a grid Viewport -- is this possible? I have figured out how to add sub text to a single chart: require(ggplot2) require(gridExtra) # make the data ...
2
votes
0answers
89 views

R documentation on ggplot_gtable and ggplot_build

I seem to be coming across the ggplot_gtable(ggplot_build(graph)) commands a lot these days when I research how to modify my ggplot graph in a particular way. For example how to add a data table to a ...
2
votes
2answers
149 views

XY scatter plot with heatmap strip at margin in r

Here data and hypithesis: set.seed(1234) myd <- data.frame (X = rnorm (100), Y = rnorm (100, 10, 3)) just catorizing X and Y, sometime this may be different variable than X and Y and is ...
4
votes
3answers
246 views

R adding a datatable to a ggplot graph using viewPorts : Scaling the Grob

I'm trying to add a data-table to a graph made in ggplot (similar to the excel functionality but with the flexibility to change the axis its on) I've had a few goes at it and keep hitting a problem ...
0
votes
2answers
95 views

How to put a wordcloud in a grob?

I've created a simple wordcloud: require(wordcloud) words <- c('affectionate', 'ambitious', 'anxious', 'articulate', 'artistic', 'caring', 'contented', 'creative', 'cynical', 'daring', ...
2
votes
2answers
83 views

Adding a border to a grid of plots in R

I have created a series of plots using ggplot and printed them in a grid. I would like to add a border around the entire grid so that when I insert the image into a presentation, it is clearly ...
0
votes
1answer
87 views

discrete and continuous scales on same axis in facet_grid

I want to use facet_grid in ggplot2 to produce two graphs with continuous and discrete scales on the same axis - essentially my vector fac has a numeric part and a factor part. ...
1
vote
1answer
156 views

arrow() in ggplot2 no longer supported

Installed R 2.15.2 on a new machine and ggplot2. The grid package is no longer supported in this latest version of R, but ggplot2 uses grid for the arrow() function, as in these examples. ...
0
votes
1answer
93 views

change the background color of grid.arrange output

I am using grid.arrange from gridExtra package to put two graphs on one page and save it to a png file. I like to change the background colour of the final png file that is produced by grid.arrange. ...
10
votes
1answer
466 views

Justification of multiple legends in ggmap/ggplot2

I am trying to make a map with two legends denoting shape and colour ("Type" and "Org" in the example below), and have the legends inset. I can place the legends, but I would like them to be left ...
4
votes
1answer
246 views

How to annotate ggplot2 qplot outside of legend and plotarea? (similar to mtext())

I would like to annotate my plots with a filename. With plot() I used mtext: plot(1:10) mtext("File xy-12-34-56.csv", 4) How can I do that with ggplot2 and qplot or ggplot? It should not collide ...
3
votes
1answer
171 views

Highlight data individually with facet_grid in R

I am using facet_grid in R to plot RT data for 5 different groups. I would like to highlight the data between 5 and 95% for each group. With the code below, I am using the percentile of the entire ...
1
vote
1answer
441 views

ggplot2 facet_grid arrange panels

the following example creates a ggplot with the 4 panels "A", "B", "C", "D" in one row. I figured out how to plot these 4 panels in one column. However, what still remains a mystery is how to ...
-7
votes
1answer
281 views

My code doesn't work… How do I make a grid in pdf output in R?

I am scratching my head for the following code. I am following this example: How can I arrange an arbitrary number of ggplots using grid.arrange? I wanted to collect the plots and lay them out on ...
1
vote
2answers
804 views

R: How to control font size in png output of ggplot2

I am trying to make figures for a manuscript, that should be written with MS Word, which does not accept figures in pdf format. The journal asks first draft with figures embedded in the Word file. ...
6
votes
1answer
1k views

Add a footnote citation outside of plot area in R?

I'd like to add a footnote citation to my 3-panel facet grid plot produced in R. It's a footnote to credit the data source. I'd ideally like to have it below and external to all three ...
5
votes
1answer
468 views

Plotting bar plot below xyplot with same x-axis?

I am trying to plot different types of plots (line plot and bar charts) beneath one another, they all have the same axis: c1 <- ggplot(data, aes(date, TotalMutObs)) + stat_smooth(se = FALSE) + ...
1
vote
1answer
821 views

Grid of multiple ggplot2 plots which have been made in a for loop

as a new ggplot2 user, I am a bit lost with the amount of possibilities, and struggle to find on the net a simple answer to what I consider a simple problem. I would like to display multiple plots ...
5
votes
1answer
691 views

How do you relate ggplot2 grobs back to the data?

Given a ggplot of, for example, points, how would you find out the row of data that a given point corresponded to? A sample plot: library(ggplot2) (p <- ggplot(mtcars, aes(mpg, wt)) + ...
4
votes
3answers
310 views

How can I use a graphic imported with grImport as axis tick labels in ggplot2 (using grid functions)?

I'm hoping I can combine the spiffy importing and drawing powers of grImport with the awesome graphing power of ggplot2, but I simply don't understand the grid system well enough to find an elegant ...
4
votes
1answer
785 views

How can I use grid to edit a ggplot2 object to add math expressions to facet labels?

I need to put Greek letters into facet labels using facet_wrap() in ggplot2. I found a Link describing the same for facet_grid(). I applied this for my data, using the following code: ...
7
votes
1answer
1k views

Specifying ggplot2 panel width

I have two ggplots on the same page, and I'd like their panels to be the same width. Some sample data: dfr1 <- data.frame( time = 1:10, value = runif(10) ) dfr2 <- data.frame( time = ...
3
votes
1answer
268 views

Using pch Characters in grid.text

I have created a graph using ggplot2. Now I want to have the legend not onto the graph but in the grid outside the graph. My question is now if someone knows if there is a possibility to use the pch ...
12
votes
3answers
4k views

Information Dashboards in R with ggplot2

I'm looking to create a static dashboard viewable in a web browser. And I'd like to create something like what Stephen Few does in his book Information Dashboard Design. (see example at bottom) ...