0
votes
2answers
38 views

ggplot2, legend on top and margin

Consider the following: library(ggplot2) library(grid) ggplot(diamonds, aes(clarity, fill=cut)) + geom_bar() + theme( plot.margin=unit(x=c(0,0,0,0),units="mm"), legend.position="top", ...
0
votes
2answers
79 views

Why does this R ggplot2 code bring up a blank display device?

While SO is not usually used for help with bugs, this one shows particularly simple and particularly annoying behavior. If you are a ggplot2 user, you can reproduce it in 10 seconds or less. As this ...
5
votes
4answers
81 views

How to plot absolute values and differences including confidence intervals

In the followup of the discussion on stackexchange I tried to implement the following plot from Cumming, G., & Finch, S. (2005). [Inference by Eye: Confidence Intervals and How to Read ...
1
vote
1answer
51 views

How to add multiple line styles within a single line using ggplot2?

I am trying to recreate the attached graphic with my own dataset. The attached R script is 90% there, however I cannot seem to find a way to stylize the line according to the figure. Specifically, I ...
1
vote
1answer
44 views

How to Get scales in ggplot after initial plot layer generated

I've looked for an answer to this, but have not found one - I use ggplot2 to draw a series of densities after I draw them, I need to obtain the x and y scales, so that I can annotate in the upper ...
0
votes
0answers
96 views

scale_colour_manual R ggplot2 geom_tile() missing something?

G'day Everyone, I am having a trouble figuring out how to specify the 'fill' colours for my graphs (below). The different subsets of my data have different levels when I specify my 'fill' variable, ...
-2
votes
1answer
89 views

How can I use ggplot2 to make a stacked barplot of pretabulated data with each column being a factor on each bar? [duplicate]

I have data that has the following format: revision added removed changed confirmed 1 20 0 0 0 2 18 3 8 10 3 ...
1
vote
1answer
122 views

Plot a smooth and extrapolated curve using an nls model with several fitted parameters

I feel that I am close to finding the answer for my problem, but somehow I just cannot manage to do it. I have used nls function to fit 3 parameters using a rather complicated function describing ...
5
votes
2answers
151 views

How can I make geom_boxplot outliers “line up” with jittered geom_points?

How can I make geom_boxplot outliers overlay perfectly with jittered geom_points? For example, I want the outliers from geom_boxplot to be displayed as "cross hairs" over their actual points from ...
0
votes
1answer
101 views

Legend with subgroups in ggplot2

I want to plot the following dataset: data<-list() data$Year<-c(rep(1995,4),rep(2005,4)) data$Name<-as.factor(c("name1","name2","name3","name4","name1","name2","name3","name4")) ...
0
votes
1answer
53 views

Colour specific regression line - extraction of aov, shapiro and fligner on text file

Here is my current code: dat = data.frame(matrix(c(rnorm(20), rep(c(1:5),10), rep(seq(1,4),5)), ncol=3)) colnames(dat)<- c('var1','var2','var3') ggplot(dat, aes(y=var1,x=var2,colour=var3)) + ...
6
votes
2answers
161 views

How to dodge pointrange ggplots on two levels?

I would like to make a point range plot where points of groups are not stacked on each other like this:: My best attempt to do the dodging is to use a vector in dodge argument: library(ggplot2) dat ...
3
votes
1answer
113 views

grouping of axis labels ggplot2

I am trying to bluid a plot with ggplot2 where on the X-axis I could find some way of having a label for groups of variables. Here is a minimal version of my code: Bzero ...
2
votes
1answer
149 views

How to combine an openstreetmap with points in R

I'm just starting off learning R and I'm attempting to create a map that shows the number of students in each town in Connecticut. I've got a .csv of location and enrollment info that looks like this: ...
1
vote
1answer
179 views

converting boxplots to densities in ggplot2 in R

I have the following ggplot2 plot: ggplot(iris) + geom_boxplot(aes(x=Species, y=Petal.Length, fill=Species)) + coord_flip() I would like to instead plot this as horizontal density plots or ...
3
votes
3answers
346 views

Coloring boxplot outlier points in ggplot2?

How can I color the outlier points in ggplot2? I want them to be the same color as the boxplot itself. colour= is not enough to do this. Example: p <- ggplot(mtcars, aes(factor(cyl), mpg)) p + ...
1
vote
1answer
85 views

Dodge by another group with ggplot2

I am trying to plot a line over a bunch of points by certain groups. For example, I have: x = rep(c('fruit', 'vegetable'), 15) z = c(rep(c(rep('fresh', 2), rep('ripe', 2), rep('rotten', 2)), 5) s = ...
0
votes
0answers
194 views

How to utilize package ggplot2 to plot maps with R

I found the post here very interesting. However, my data is slightly different and therefore I need to make a few changes to make it work. Basically, I am stuck on the last part: autoplot(mp) + ...
1
vote
3answers
187 views

How do you order the fill-colours within ggplot2 geom_bar

I am calling the ggplot function ggplot(data,aes(x,y,fill=category)+geom_bar(stat="identity") The result is a barplot with bars filled by various colours corresponding to category. However the ...
8
votes
1answer
467 views

Show two measurement units on axis ticks in ggplot2

How it is possible (if at all) to show two alternative units on axis ticks in ggplot2? What I would like to achieve is something like this:
12
votes
1answer
230 views

ggplot2 - set lower bound greater than lowest point

For some reason the function I'm fitting with ggplot2 is extending beyond the y-axis, even though the minimum value that can be obtained is zero. So, in attempting to restrict the lower bound to zero, ...
0
votes
1answer
126 views

Mixing colours to make a custom plot in R

UPDATE: Deleted now irrelevant preamble and updated progress. Hi I'm trying to plow a horizontal bar a bit like a heat-map, which will change color based on values below. The bar should be red by ...
4
votes
3answers
469 views

Stacked histogram from already summarized counts using ggplot2

I would like some help coloring a ggplot2 histogram generated from already-summarized count data. The data are something like counts of # males and # females living in a number of different areas. ...
1
vote
1answer
209 views

Changing ggplot2 legend title without altering graphical parameters

I have found many topics about the legend title with ggplot2 but after a couple of hours I have not been able to handle my situation. Here is the dataset: > dat FACTOR1 FACTOR2 lsmean lower.CL ...
6
votes
0answers
212 views

Is ggplot2's continuous color scale incompatible with knitr's tikzDevice?

I've been using knitr with R base graphics and tikz output for a while now, and wanted to try out ggplot2 instead. However, this minimal example fails to produce any output with knitr 1.0.5: ...
2
votes
1answer
218 views

How to get something like Matplotlib's symlog scale in ggplot or lattice?

For very heavy-tailed data of both positive and negative sign, I sometimes like to see all the data on a plot without hiding structure in the unit interval. When plotting with Matplotlib in Python, I ...
-3
votes
1answer
169 views

How to produce bandlines using ggplot2?

Stephen Few has recently introduced Bandlines which are an extension to Edward Tufte’s Sparklines. Is there an easy way to produce these kinds of plots using ggplot2?
0
votes
1answer
134 views

controlling column widths for side by side base graphic and ggplot2 graphic

@Ricardo Saporta has proposed here an easy way to combine base graphics and ggplot graphics in a multiple plots figure. I use this way to plot a base graphic at left and a ggplot graphic at right ...
1
vote
2answers
517 views

R pie charts : How to allocate the colors according to a variable?

I'm making a set of pie charts in R (with a loop) out of subsets from a single data frame. I get nice pie charts but the colors are allocated always in the same order in each pie while I would like to ...
0
votes
1answer
87 views

Plotting points with proporcional sizes to the values over a raster map in R

I hope someone can give me a start point to solve my problem. I have an raster image showing the occurence prediction of a clam species. So, I have a set of coordinates, xyz like, that I would like ...
1
vote
1answer
590 views

ggplot2 finds empty rows in survival dataframe when drawing Kaplan-Meier plot

I am trying to draw some Kaplan-Meier curves using ggplot2 and code found at: https://github.com/kmiddleton/rexamples/blob/master/qplot_survival.R I had good results with this great code in a ...
5
votes
1answer
87 views

wrap a wide image into several lines

I'm producing a rather wide image, listing consecutive training sessions of target practice. At present, this is not very helpful graphic and I will need to get the image wrapped into several ...
2
votes
1answer
209 views

Violinplot in R with discrete values

I'm trying to create a violin plot in R from count data. The data I use is a number of mutations that is found in each sample for each source. It looks something like this: 2 Source1 8 Source2 0 ...
0
votes
2answers
125 views

How do you add a legend of geometries in ggplot2?

Let's say I've got a set of data and I want to add a legend to each geometry that I plot it with. For example: x <- rnorm(100, 1) qplot(x = x, y = 1:100, geom = c("point", "smooth")) And it ...
1
vote
1answer
615 views

ggplot Donut chart

Hi I really have googled this a lot without any joy. Would be happy to get a reference to a website if it exists. I'm struggling to understand the Hadley documentation on polar coordinates and I know ...
1
vote
1answer
375 views

Overlaying geom_point layer on a geom_boxplot

Really struggling with this. a & b are actual datasets in the real world, a being extremely large. I get an error ggplot2 doesn't know how to deal with data of class uneval. What I'm trying to ...
1
vote
0answers
189 views

Cannot save gglot2 graph with ggsave on Mac

After sucessfully creating a graph with this code: qplot(ethcat3, Percent, data=g_02_1b_pov, geom="bar", stat="identity") I would like to save the graph as a png, pdf, or jpeg file. I used ...
2
votes
1answer
403 views

Set specific fill colors in ggplot2 by sign

Hi wanted to adjust the following chart so that the values below zero are filled in red and the ones above are in dark blue. How can I do this with ggplot2? mydata = structure(list(Mealtime = ...
5
votes
1answer
739 views

How to shade a region under a curve using ggplot2 [duplicate]

Possible Duplicate: Shading a kernel density plot between two points. I've been trying to use ggplot2 to produce a plot similar to this R graphic: xv<-seq(0,4,0.01) ...
7
votes
0answers
421 views

Overall correlation in ggpairs with colour grouping?

This code produces a nice pairs plot that has a correlation read-out on the middle right: library(GGally) ggpairs(esoph[,c(1,4,5)], colour='agegp') You can get just the correlation square with: ...
4
votes
1answer
2k views

Plotting discrete and continuous scales in same ggplot

I would like to plot some different data items using ggplot2, using two different colour scales (one continuous and one discrete from two different df's). I can plot either exactly how I would like ...
9
votes
2answers
862 views

ggplot2: raster plotting does not work as expected when setting alpha values

First post here, I hope I'm observing website etiquette. I couldn't find and answer on the site and I previously posted this to a ggplot2 specific group, but no solutions as yet. Basically I am ...
2
votes
1answer
1k views

R heatmap with diverging colour palette

I am trying to create a simple heatmap in R, using a diverging colour palette. I want to use a gradient so that all numbers below a threshold N are designated a color (say purple), and all numbers ...
1
vote
2answers
304 views

Add horizontal line to qqplot

I want to use qqplot2 to draw multiple line with different colors in one plot and then add a separate horizontal line. My code is as below. It works well until I run the final line "p + ...
3
votes
2answers
841 views

R: removing facet_wrap labels completely in ggplot2

I'd like to remove the labels for the facets completely to create a sort of sparkline effect, as for the audience the labels are irrelevant, the best I can come up with is: library(MASS) ...
3
votes
1answer
154 views

Any way to disable the “minus hack” in PDF/Poscript output?

In R, when saving a plot to a PDF or Postscript file, hyphens in axis labels get turned into minus signs. This, apparently, is by design. According to the documentation for the "postscript" device: ...
0
votes
1answer
101 views

how to save gplot output to file in matlab?

Can you guys suggest way to save/output gplot to file. I am still trying to figure things out with matlab. Thanks. A=[0,1,1,1,1,1,0,0,0; 1,0,1,0,0,0,1,0,0; 1,1,0,1,0,0,1,0,0; 1,0,1,0,1,0,0,1,0; ...
5
votes
2answers
1k views

Two Color Scales for geom_line in ggplot2

I have a chart (code to replicate will be below) that has two lines (and points) of data that need to be color coded, then three sets of confidence intervals (lines) which need to have their own color ...
1
vote
2answers
316 views

GGPLOT2: Distance of discrete values of from each end of x-axis

I have been working with the code below. Everything seems to work okay, except that the discrete values on the x-axis are far from each end of the graph. I've tried several things including changing ...
1
vote
1answer
368 views

rectangle bar graph filled with color and distance using R (base R or ggplot2 or other package)

I have following type of data and I want to produce bar graph. Mark <- 1:10 Post <- c(0, 1, 4, 5, 6, 8, 10, 11, 12, 13) color <- c(1,0.5,1, 1, 0.6, 0.7, 1,1,1) # 9 intervals ...

1 2