Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

8
votes
1answer
960 views

ggplot2: Overlay histogram with density curve

I am trying out ggplot2, and I run in a few problems. What I am trying to do is make a histogram of density values and overlay that with the curve of a density function (not the density estimate). ...
6
votes
2answers
327 views

how to add labels to a plot

Is there a way to add labels to each point in a plot? I did this on an image editor just to convey the idea: 1. The original one was generated with: qplot(pcomments, gcomments , data = topbtw, ...
6
votes
2answers
502 views

How to set legend alpha with ggplot2

I have a graph of wind speeds against direction which has a huge numeber of points, and so am using alpha=I(1/20) in addition to color=month Here is a sample of code: library(RMySQL) ...
4
votes
2answers
362 views

ggplot2 - Shade area above line

I have some data that is constrained below a 1:1 line. I would to demonstrate this on a plot by lightly shading the area ABOVE the line, to draw the attention of the viewer to the area beneath the ...
4
votes
2answers
1k views

qplot and anti-aliasing in R

I am using ggplot2 library and am working with the qplot command I know I can save my output as an anti-aliased image file by using the following command after my qplot ggsave(file="filename.png") ...
3
votes
2answers
175 views

How to add gaussian curve to histogram created with qplot?

I have question probably similar to Fitting a density curve to a histogram in R. Using qplot I have created 7 histograms with this command: (qplot(V1, data=data, binwidth=10, facets=V2~.) For ...
3
votes
2answers
448 views

How can I color a specific bar in a bar plot (qplot, ggplot2)

I plotted a facet graph using qplot and I used "fill" option to color the bars based on their values(high=Red, med=violet, low=blue) http://i.stack.imgur.com/raEzA.png My code is: x = ...
2
votes
2answers
120 views

How to suppress qplot's binwidth warning inside a function?

I am writing a function that uses qplot() to draw a histogram, for example, > library(ggplot2) > d=rnorm(100) > myfun=function(x) qplot(x) Running it gives a warning: > myfun(d) ...
2
votes
1answer
105 views

In ggplot2, how do I make a faceted plot have min heights and share the same ticks?

I'm producing a faceted plot like this: This is accomplished with: df = data.frame(val=rnorm(2005), class=c(rep(c('a','b'), 1000), rep('c', 5))) qplot(val, ..count.., data=df, geom='density', ...
2
votes
1answer
336 views

Can qplot directly display percentages without intermediate columns?

I have a bunch of histograms to plot on data that is still coming. As the sample sizes vary, in order to compare them I need to plot the histograms with percentages not counts. qplot (field, ...
2
votes
2answers
537 views

Create qplots (with ggplot2) larger than the window?

I have a large chart with many data points. When I create the qplot in R, the chart is auto-fitted to the window. Even if I maximize the window, the chart is still too small and details are lost. I ...
1
vote
2answers
53 views

Using “line” as a geom type won't plot

I have a data.frame with the following characteristics: +-----------------------------------------+ | earning budget ts total | +-----------------------------------------+ | 1 ...
1
vote
3answers
98 views

Loop through a series of qplots

I would like to loop through a long series of qplots or ggplot2 plots, pausing at each one so I can examine it before moving on. The following code produces no plots: library(ggplot2) par(ask=TRUE) ...
1
vote
2answers
142 views

How do I plot only the time portion of a timestamp including a date?

So I have a set of timestamps like this: datetime<-c("2011-09-28 03:33:00", "2011-08-24 13:41:00", "2011-09-19 16:14:00", "2011-08-18 11:01:00", "2011-09-17 06:35:00", "2011-08-15 12:48:00") I ...
1
vote
1answer
145 views

ggplot2 position='dodge' producing bars that are too wide

I'm interested in producing a histogram with position='dodge' and fill=some factor (i.e. side-by-side bars for different subgroups within each bar/group), but ggplot2 gives me something like the first ...
1
vote
1answer
248 views

plot lines using qplot

I want to plot multiple lines on the sample plot using qplot in the ggplot2 package. But I'm having some problem with it. Using the old plot, and lines function I would do something like ...
1
vote
2answers
125 views

Plotting mean and std. deriv. of logarithmic data in R

I'd like to plot some data stored in two vectors (x and y) in loglog scale. Furthermore, I want to add the mean and the standard derivation (latter using bars). My problem is, that there are zeros in ...
1
vote
1answer
2k views

scatterplot: how to color points in a different color if a data attribute is not null

I have a scatter plot in R (with ggplot2). The data has a numeric column (let's call it "bin") which can contain various integer values or null. I would like to colour the points with non-null bin ...
0
votes
1answer
38 views

frequency plot using ggplot hangs or not showing plot

I have a dataframe with 880,000 rows and 2 columns ('width', 'group') in the following form: width group 20 a 25 a 20 a 25 a 35 b 40 c 20 d 25 d I want to create a ...
0
votes
0answers
37 views

qplot how to change row names order

When ever i plot histogram or other plot the row names order is sorting through alphabetical way. for ex: Is it possible to keep as it is in the data. TF No.of_Bound_Genes ...
0
votes
1answer
280 views

Smooth Error in qplot from ggplot2

I have some data that I am trying to plot faceted by its Type with a smooth (Loess, LM, whatever) superimposed. Generation code is below: testFrame <- ...
0
votes
1answer
159 views

Learning qplot

What is a good resource for learning qplot? Or even what is a good qplot reference?
-1
votes
1answer
50 views

ggplot multiplot - keeping the title at the bottom

My question is similar to the following post, the only thing I need is to place the titles of each subplot below each figure instead of on the top. Place title of multiplot panel with ggplot2 ...