0
votes
1answer
27 views

Can the minimum y-value be adjusting when using scales = “free” in ggplot?

Using the following data set: day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg")) day <- factor(day, level=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg")) ...
1
vote
1answer
40 views

Can a portion of the background in ggplot be changed to a different color?

Using the following data frame d: day <- gl(8,1,24,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg")) day <- factor(day, level=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg")) ...
0
votes
1answer
23 views

R graphic: Shifting values of different series so that error bars do not overlap

Here is a code: set.seed (12) library(ggplot2) dat = data.frame(a=runif(40,0,1),b=c('a','b','c','d','e'),c=c('Hi','Hello')) ggplot(dat,aes(x=b,y=a,shape=factor(c))) + ...
0
votes
0answers
30 views

Animating graph traversal

I have a graph data structure and an array of nodes that represent a path that was traversed in the graph. Are there software packages that can animate this traversal? Can it be done in D3 or ...
0
votes
1answer
47 views

Combining 2 different graph outputs in R into one graph

So I used the following code, to generate graphs, where appl and apple generate 2 different graphs and now I want to combine them into a single graph data <- ddply(data, .(Value), summarise, ...
1
vote
1answer
93 views

Overlaying two graphs using viewports

I've been trying (knowing all the reasons why I shouldn't) to overlay two graphs on each other. I remember that when I used viewports in the past the two images would overlay on top of each other. So ...
0
votes
2answers
106 views

Change text color for single facets in ggplot2

I have created the plot below with these commands: ggplot(long.data, aes(owner,value)) + stat_summary(fun.y=mean,geom="bar", fill=c("deepskyblue","deepskyblue4")) + ...
2
votes
2answers
166 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 ...
1
vote
2answers
111 views

Use stat_summary to annotate plot with number of observations

How can I use stat_summary to label a plot with n = x where is x a variable? Here's an example of the desired output: I can make that above plot with this rather inefficient code: nlabels <- ...
1
vote
1answer
224 views

Create line graph with ggplot2, using time periods as x-variable

I am very new to R, and so this question is extremely elementary, but I can't solve it myself. I would very much appreciate your help. This is a sort of dataframe I want to use: Period ...
0
votes
0answers
110 views

theoritical density distribution plot in r

I have data like the following: type1 <- c(rep(1,49), rep(2, 30), rep(3, 20), rep(4,1)) type2 <- c(rep(1,10), rep(2, 20), rep(3, 40), rep(4,20), rep(5,10)) type3 <- c(rep(5,49), rep(4, 30), ...
0
votes
2answers
157 views

stacked barplots of the same height

I have a set of data that looks like this: col1 col2 col3 col4 cr 84 88.242 9.833 4.194 A 94 107.571 10.917 3.708 B 188 240.288 16.917 6.333 A 245 371.005 22.333 10.389 ...
1
vote
2answers
114 views

Force R to stop plotting abbreviated axis labels - e.g. 1e+00 in ggplot2

In ggplot2 how can I stop axis labels being abbreviated - e.g. 1e+00, 1e+01 along the x axis once plotted? Ideally, I want to force R to display the actual values which in this case would be 1,10. ...
16
votes
1answer
437 views

gradient shaded confidence interval

I want to improvise my regression plot shade which is proportional to density. For example is the confidence interval is narrow the shade is dense while if confidence interval wide the fill color is ...
-1
votes
1answer
84 views

Creating a particular chart in R using ggplot2

I'm trying to create a chart using ggplot and R. The chart is of # of git commits per person by hour of day. There are several people, so I want the chart to look something like this: Example ...
11
votes
3answers
518 views

population pyramid density plot in r

I would like to create pyramid density plot like the following: The point that I can reach is just simiple pyramid plot based on the following sample example: set.seed (123) xvar <- round ...
4
votes
3answers
532 views

box plot with confidence interval and identify particular datapoints in r

Here is my example data: set.seed(1234) myd <- data.frame (SN = 1:100, myv = round (rnorm(100, 5, 5), 2)) boxplot(myd$myv, col = "lightgreen") I want to highlight the portion of the boxplot ...
1
vote
1answer
504 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 ...
11
votes
3answers
257 views

organization chart triangle plot

I would like to create a triangle plot with organization structure (hierarchy) showing the number of employees at each level in different companies. Here is some example data: mylabd <- ...
1
vote
3answers
255 views

Drawing a multiline graph with ggplot2 from a zoo object

all. I read several previous message at stackoverflow, and went through the documentation of zoo and ggplot2 but didn't find any suitable answer. Say I have a zoo object called 'data'. The original ...
13
votes
2answers
347 views

R graphs: Creating Tufte's horizontal bar lines

How can we replicate Tufte's implicit horizontal lines in R? For example, the following is a good starting point: library(ggplot2) ggplot(msleep, aes(x=order)) + stat_bin() + theme_bw() ...
2
votes
1answer
2k views

Overlaying two graphs using ggplot2 in R

I have two graphs and I am trying to overlay one on top of the other: An example of the data frame "ge" looks like this. In actuality there are 10 Genes with 200 samples each, so there are 2000 rows ...
3
votes
1answer
140 views

Plot nodes and edges in a coordinate system using R

I implemented the FR test here and now I would like to test it by means of visualizing the resulting minimum spanning trees in R. The vertices and edges should be plotted in a coordinate system. ...
1
vote
2answers
97 views

ggplot2 geom to graph the quantity of each point type (against a continuous axis)?

I'm trying to figure out how to make a particular kind of graph. It looks like the kind of thing that would be super easy to do in R or ggplot2, but I must not be finding the right keywords to ...
2
votes
1answer
157 views

Changing alpha doesn't affect anything in ggplot2

I'm somewhat new to R and ggplot2 so this question is likely somewhat low-level. But I've done a fair amount of experimenting and found no answers online, so I thought I'd ask here. When I add alpha ...
1
vote
1answer
92 views

Minor breaks do not show when using scale_x_reverse

I can't get the minor_breaks argument to do anything when I use the convenience function scale_x_reverse df <- data.frame(x=c(10,20,40,90,300),y=c(1,2,7,2,7)) #define data frame # ...
0
votes
1answer
155 views

How to make a bar plot from data with multiple events in multiple years

I have a data frame that looks like this: date id freq 6/17/12 0417D0214D 81 6/17/12 0417D2F96C 275 6/18/12 04179385A3 1 6/18/12 041793A84F 2 6/18/12 0417CA9138 2 6/18/12 ...
0
votes
1answer
87 views

Legend labeling issue with ggplot2

This is sort of a nitpicky issue but I'm having trouble displaying the color of a line in the legend for the graph. In the box next to "Sabry Lee" the color should be blue, but it's blank, for some ...
2
votes
3answers
266 views

Embiggening a graph in ggplot2

I'm making a bunch of line graphs in R with ggplot2 and I want to save them as jpegs. However, I would like to make the graphs bigger or higher resolution, so that if you zoom in on the graphs when ...
2
votes
2answers
227 views

Violin chart in D3

Any ideas on where to even begin with making a violin chart using d3? Does it exist already? I've looked around and have figured out how to do it using ggplot2 and was hoping there'd be a ready-made ...
3
votes
2answers
240 views

plotting modified point and line plot - variability as “spike” plot in r

Before explaining details, here is my data: set.seed (1234) datas <- data.frame (Indv = 1:20, Xvar = rnorm (20, 50, 10), Yvar = rnorm (20, 30,5), Yvar1 = rnorm (20, 10, 2), Yvar2 = rnorm (20, 5, ...
21
votes
3answers
642 views

two-way density plot combined with one way density plot with selected regions in r

# data set.seed (123) xvar <- c(rnorm (1000, 50, 30), rnorm (1000, 40, 10), rnorm (1000, 70, 10)) yvar <- xvar + rnorm (length (xvar), 0, 20) myd <- data.frame (xvar, yvar) # density ...
1
vote
1answer
458 views

remove only y axis using axis.line in ggplot2 0.9.0 [duplicate]

Possible Duplicate: can I separately control the x and y axes using ggplot? I saw an earlier post describing how to do this (can I separately control the x and y axes using ggplot?)-but it ...
3
votes
1answer
166 views

Error when changing axis format with scale_x_date

Dear fellow homo sapiens, I've created this graph using the code below (except without + scale_x_date). The data-set that I've used to do this is found HERE. It looks like this: ...
1
vote
1answer
179 views

Multiple lines on one graph: Adding a text acronym (“legend”) to the very the end of each line (ggplot2)

I have generated the following graph: http://i47.tinypic.com/s3dd0m.png I have a fair amount of long data (that can be downloaded here: http://www.sendspace.com/file/lfd31r), and the data looks ...
5
votes
2answers
833 views

Bar graph in ggplot2 with width as a variable and even spacing between bars

So I am trying to make a stacked bar graph with bar width mapped to a variable; but I want the spacing between my bars to be constant. Does anyone know how to make the spacing constant between the ...
1
vote
1answer
108 views

Why am I getting dark text like this?

I am using the following data to plot my graph: transData = structure(list(Type = c("A", "B", "A", "A", "A", "B", "B", "B", "A", "A", "A", "A", "A", "A", "A", "A", "A", "B", "A", "B", "A", "A", ...
1
vote
1answer
253 views

Plot correlations between 2 Y axes

I'm looking to a scatter plot with a rotated X axis. Basically, I want to plot correlations between 2 Y-axes. Ideally, I'd like to have the x-axis represent the time and Y-axes represent the ...
4
votes
2answers
149 views

Displaying only labels that are being used?

I am using the following to plot the graph given below: data <- structure(list(Type1 = c("DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "DB", "Manual", "Manual", ...
6
votes
2answers
446 views

Plotting interaction in R graphs

I have following type of data (although number of data points is very large) # property data name <- c("A", "B", "C", "D") diameter <- c(4.3, 8.3,1.2, 3.3) X <- c( 1, 2, 3, 4) Y <- c(1, ...
1
vote
3answers
658 views

shading within xy curve plot in R

I have data similar to following: X <- 1:20 B <- c(1,4,6,3,1, 4, 5,8,8,6,3,2,1, 1,5,7,8,6,4,2) C <- B + 4 myd <- data.frame (X, B, C) I want to shade with different color within the ...
3
votes
2answers
360 views

horizontal line graph with assambly in R

I have big data like the following but this just little sample. pos <- c(1, 3, 5, 8, 10, 12) start <- c(1,3, 6, 7, 10, 11) end <- c(5, 6, 9, 9, 13, 12) Qunatative variable Pos will be Y ...
2
votes
3answers
659 views

alignment of multiple graph types in R (preferably in ggplot2 or lattice)

I want to create the following type of graph with line, bar and heatmap with a dataset like this: pos <- 1:40 # X axis barvar <- rnorm (40, 5, 2) # y axis for barplot linevar <- rnorm (40, ...
2
votes
1answer
280 views

creating and combining two plots - xy line plot with bar chain plot in R

The following two data sets I intend create graph from: first data (will develop bottom portion) position <- c(10, 26, 31, 50, 73, 92, 120, 124) # need scale minimum 0 to maximum 130 label ...
4
votes
2answers
596 views

ggplot2: Splitting facet/strip text into two lines

Consider the following ggplot2 graph with long facet/strip text broken in two lines. The text goes outside the area devoted to facet titles. library(ggplot2) x <- c(1:3, 1:3) y <- c(3:1, 1:3) ...
0
votes
3answers
241 views

How do I plot lines and points with limited points?

I am trying to replot the following figure in a more legible way. Observe that I am trying to plot both lines and points. However, the number of points being printed is way too many and the line is ...
0
votes
1answer
692 views

How can I create a proportional area stacked bar chart in R?

I would like to create a horizontal proportional stacked bar "chart", using R. My data is unidimensional. It represents failure rates in successive categories, and looks like this: taskC=c(16, 10, ...
4
votes
5answers
806 views

can I make such graph in R - bar chart embedded in pie chart

I have following data: I II Total A 15 25 40 B 5 45 50 C 15 5 20 R data input: group <- c("A", "B", "C", "A", "B", "C") subgroup <- c("I", "I", "I", "II", "II", "II") ...
4
votes
3answers
236 views

graph of my imagination in R - a map with spacing between bars and bar height

I want to develop the following type of graph: Where the postion determines the position of bar (not single direction rather both direction, although direction do not have special sense but ...
1
vote
1answer
323 views

Drawing a single vertical line for the entire facet_grid?

I am plotting a dataset using the following: plot = ggplot(transData, aes(x=Time, y=Value)) + scale_fill_brewer(palette="Set1") + facet_grid(Category ~ .) + ...

1 2