0
votes
0answers
32 views

Grouped Bar Graph from Unequal Vectors

I'm trying to create a grouped ("side-by-side") bar graph in R for four vectors of unequal length. Each vector has "scores" for a particular process, and while the vectors are not exactly the same ...
0
votes
3answers
126 views

How to plot multipleset data in R? [closed]

Like in the plot found here I would like to display multiple datasets in the same bar graph. My data is essentially "male/female" heights for various countries. I want the country along the x-axis ...
5
votes
1answer
127 views

Plotting animated exchange (plotting directional edges)

I once saw this plot (LINK) on shipping trades. I work with dialogue exchanges and thought it may be interesting to map this sort of exchange using R. This is a larger question but I think it may ...
1
vote
1answer
634 views

Grouped bar Graph using barplot [duplicate]

Possible Duplicate: How to create grouped barplot with R Species Dbh Height 1 DF 383.7143 254.3036 2 ES 403.3333 280.0000 3 F 372.0000 270.0000 4 FG 381.5000 ...
8
votes
1answer
392 views

Use image instead of labels in ggplot2 legend

I have a plot in ggplot2 with, say, 2 lines, and in the legend I have "Sharks" and "Tigers". Is there a way I could have shark/tiger images appear in the legend instead of that text?
1
vote
1answer
76 views

Graphing Activity budges that will also incorporate behavior

I have been given a challenging problem and was hoping for some recommendations. I have activity data that I would like to display graphically and am looking for a package or program that could be ...
2
votes
1answer
798 views

ggplot2 y-axis ticks not showing up on a log scale

I am trying to use ggplot2 to create a boxplot graph but I am having trouble getting the ticks to show up as it does in the examples of the ggplot2 webiste. Here is some fake data of tastiness of ...
1
vote
3answers
2k views

Matching Color in Legend in R plot

I'm just starting to use R and I'm trying to make a scatter plot which has different colors based on different attributes. For example: data.a = 1:5 data.b = 1:5 data.c = c("yes", "no", "yes", ...
36
votes
2answers
4k views

R + ggplot : Time series with events

I'm an R/ggplot newbie. I would like to create a geom_line plot of a continuous variable time series and then add a layer composed of events. The continuous variable and its timestamps is stored in ...
5
votes
1answer
1k views

creating confidence area for normally distributed scatterplot in ggplot2 and R

I have some data, say (in reality, I have a large amount of data): x y 0.1 0.267 0.2 0.254 0.3 0.182 0.4 0.173 0.5 0.121 0.6 0.089 0.7 0.070 0.8 0.056 0.9 0.031 This data roughly follows a trend ...
1
vote
1answer
2k views

Setting axis intervals in ggplot

I have searched for this and can't believe I can't find it. Perhaps I've been asking the wrong question. I have a set of data laid out in a histogram that has a xlim of $2,000,000. I am trying to set ...
0
votes
2answers
537 views

R Density Graph: How can I add a solid line from the x-axis to the top of the density curve

I have a density plot graphed using: plot(density(x)) What I am interested in doing is creating a line for something like x = 5 from the x-axis to the corresponding spot on the curve. Like this: ...
5
votes
1answer
247 views

Add statistical information to the bottom of a graph

I am try to add statistical information (min, max, quartile values, mean, median etc) regarding a given distribution to the bottom a graph (histogram, time series plot) in R. I know the stats can be ...
0
votes
1answer
4k views

Plotting in R; cannot be coerced to double error

I am trying to plot a and b, each consisting of 7500 data points. However when I tried plot(x,y), I got the following error: > plot(a[11],b[11]) Error in xy.coords(x, y, xlabel, ylabel, log) : ...
5
votes
2answers
951 views

Reading and graphing data read from huge files

We have pretty large files, the order of 1-1.5 GB combined (mostly log files) with raw data that is easily parseable to a csv, which is subsequently supposed to be graphed to generate a set of graph ...
2
votes
2answers
892 views

R Programming: Merging two variables to create frequency table

I have another newbie question; lets say i have a set of numbers graph_val <- c(4,2,3,4,1,1,9) and i need to create a frequency table of them against this scale 1 2 ...
7
votes
1answer
10k views

grouped bar graph

I have the following data: bin groupname total_dist 0 rowA 377 0 rowA 306.6 0 rowB 2.1 0 rowB 110.6 1 rowA 918.1 1 rowA 463.2 1 rowB 798.2 1 rowB 1196 2 ...