0
votes
0answers
35 views

Clipping stat_density2d plot by polygon in ggplot2

I am plotting 2d density map of github profiles in continental US. Dataframe looks like this: > head(f) login id location lat long 1 defunkt 2 San Francisco 37.78300 ...
-1
votes
1answer
34 views

Generating boxplot in R

I have data that looks like this: tc td 3 400 3 430 4 200 4 240 5 120 3 470 ... and so on. I would like to generate a boxplot(using default plotters or ggplot2) that groups ...
1
vote
0answers
72 views

plotting numerous pie plot with ggplot2

I am trying to plot 5625 (75*75), in ggplot2; It takes ages, and the quality of plot at the end is relatively low. Is there any other alternative, to plot such a thing?! mydata = ...
3
votes
2answers
199 views

ggplot, facet, piechart: placing text in the middle of piechart slices

Trying to produce piechart with ggplot and facing the problem with placing text in the middle of each slice: dat = read.table(text = "Channel Volume Cnt AGENT high 8344 ...
0
votes
1answer
82 views

How to add multiple lines using ggplot given two vectors of their coefficients without using for loop? [closed]

Using for loop is significantly slower and just doesn't seems right. I would greatly appreciate it if someone could use some other method with geom_abline(intercept, slope). The variable Coeff is a ...
1
vote
1answer
180 views

ggplot2, color segment of geom_segment

I'm working on a rather elaborate plot of some indoor and outdoor activities, and I'm kinda stuck. I want to add colorize the minutes spent indoor/outdoor by (Xmin, Ymin, and Zmin) in the geom_segment ...
0
votes
1answer
220 views

changing ggplot factor colors?

I notice that here Box and whiskers plot the call: p + geom_boxplot(aes(fill = factor(cyl))) generates bright red/green/blue colors for boxplots fill, while: p + geom_boxplot(aes(fill = ...
0
votes
0answers
52 views

How does one creates a `ggplot2` plot that is composed of stacked squares? [duplicate]

I would like to use R to create a plot (preferably with ggplo2) that looks like this one: In this plot, every bar is composed of various numbers of squares, when each square designates a given ...
3
votes
2answers
150 views

How to use different shapes for every point in ggplot

I am plotting a 4 dimensional data set. Beyond the x-axis and y-axis, I want to represent the 3rd and the 4th dimension by rectangles of different width and height. Can I do this with ggplot? Thanks. ...
0
votes
0answers
174 views

How can I visualize the data causing an interaction effect in a linear model?

I have a linear model that includes two continuous variables X and Y and their interaction X:Y. The main effect coefficient of X is effectively zero (and ns), but the interaction coefficient is ...
1
vote
0answers
215 views

customized scale_y_continuous() within facet_grid() in ggplot2

I am looking to add an additional white line to the background grid and a additional tick mark, but only within the facet Low Tide, is that in any way possible? I imagine i would be possible to add a ...
2
votes
1answer
157 views

Visualize aggregate data using ggplot2

I have some aggregate data that I would like to visualize using ggplot2 and I am now looking for a smart shortcut to plot aggregate data? The data I have looks like this, (I currently only have data ...
2
votes
1answer
91 views

How do I plot a temporal cdf?

I have the following values: Day 1: X11 X12 X13 X14 X15 ... Day 2: X21 X22 X23 X24 X25 ... Day 3: X31 X32 X33 X34 X35 ... ... ... I can use the values of each day to plot a different CDF but is ...
0
votes
3answers
224 views

barplot with 3 variables (continous X and Y and third stacked variable)

I have some data like this: myd <- structure(list(var1 = structure(1:4, .Label = c("II", "III", "IV", "V"), class = "factor"), zero_co = c(15.15152, 3.030303, 0, 0), non_zero_CO ...
0
votes
1answer
357 views

ggplot2 2d Density Weights

I'm trying to plot some data with 2d density contours using ggplot2 in R. I'm getting one slightly odd result. First I set up my ggplot object: p <- ggplot(data, aes(x=Distance,y=Rate, colour = ...
4
votes
1answer
241 views

geom_point: Put overlapping points with highest values on top of others

I am visualizing a panel dataset with geom_point where y = var1, x = year, and color = var2. The problem is that there are many overlapping points, even with horizontal jitter. Reducing the point ...
7
votes
2answers
538 views

In R, how to make dots transparent while using scale_size in ggplot2?

This equation leads from my previous question. I want to plot dots that represent total population and so far I used scale_size to make dots' size relative to its total population. But, I want to ...
3
votes
1answer
346 views

Weird “Non-continuous variable supplied to scale_x_continuous Error”

I have an interesting conundrum. I can create the type of chart I seek interactively, but not automatically. Or, I nearly had it automatically, but something broke. (example data at end of post). I ...
1
vote
1answer
259 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 ...
8
votes
2answers
924 views

R: How to overlay pie charts on 'dots' in a scatterplot in R

Using R I would like to replace the points in a 2d scatter plot by a pie chart displaying additional values. The rational behind is that I have time series data for hundreds of elements (proteins) ...
3
votes
2answers
1k views

proper vertical alignment for angled x-axis ticks in faceted ggplot figures

i'm looking for some help in creating a faceted plot with angeled x-axis tick labels, which is probably best explained by the following example: require(ggplot2) df <- ...
0
votes
1answer
133 views

axis.text.y - fixed width possible?

I have two graphs in a row, both should have the same width since I want to share one legend. The data of the y axis are different, though and since one is quite high, the other quite low, the width ...
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 ...
2
votes
1answer
883 views

Heatmaps in R using ggplot function - how to cluster rows?

I am currently generating heatmaps in R using the ggplot function. In the code below.. I first read the data into a dataframe, remove any duplicate rows, factorise timestamp field, melt the dataframe ...
4
votes
1answer
397 views

Multiple frequency lines on same graph where y is a character value

I'm trying to create a frequency plot of number of appearances of a graph type by year. I have played around with ggplot2 for a while, but I think this is over my head (I'm just getting started with ...
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 ...
7
votes
3answers
1k views

Draw a chronological timeline with ggplot2

I have data like data = as.data.frame( rbind( c("1492", "Columbus sailed the ocean blue"), c("1976", "Americans listened to Styx"), ...
9
votes
3answers
559 views

How can I visualize hierarchical data?

I have some data like the following: A A1 12 A A2 23 A A3 AA1 1 A A3 AA2 2 B B1 2 B B2 1 Is there a way to visualize this information in ggplot? I am looking for something like this: |--A1---12 ...
7
votes
1answer
2k views

Combine continuous and discrete color scale in ggplot2?

I am a ggplot2 newbie. I am making a scatter plot where the points are colored based on a third continuous variable. However, for some of the points, that continuous variable has either an Inf value ...
1
vote
1answer
298 views

Is it possible to split X-Axis labels into two levels?

My X-axis labels are strings and rotating them is making my plot look ugly. In ggplot, is there a way to split up the X-axis labels such that half of them appear on the top and half on the bottom ...
-1
votes
2answers
179 views

Help reproduce graph from excel

I would like to reproduce the following graph: On the horizontal axis I would like to have 8 the question numbers, and I would like to plot two results for each question. for example ...
5
votes
1answer
254 views

R ggplot2 - Help Replicating Train Diagram

QUESTION Can someone help walk me through the general approach to solving this problem? I'm trying to replicate a Train Diagram like this one (full size) using some train movement data of my own. ...
2
votes
1answer
719 views

How can I add facets to my ggplot2 stacked bar graph?

With data that looks like this: Subcategory Title Value Sub1 Name1 2 Sub1 Name2 5 Sub2 Name3 4 Sub2 Name4 1 Sub3 Name5 2 Sub3 ...
0
votes
3answers
1k views

How can I create quantitative stacked bar graphs in Tableau Public?

I have data that looks like this: Subcategory Title Value Sub1 Name1 2 Sub1 Name2 5 Sub2 Name3 4 Sub2 Name4 1 Sub3 Name5 2 Sub3 ...
0
votes
2answers
195 views

How to ignore one factor when determining ylim with faceted plot

In the following (nonsensical) example, I would like to plot both y1 and y2 curves, but have the ylim determined according to the y1 curve, ignoring y2. Here's the example: library(ggplot2) curves ...
2
votes
2answers
1k views

Adding summary information to a density plot created with ggplot

I have a density plot and I would like to add some summary information such as placing a line at the median and shading the 90% credible intervals (5th and 95th quantiles). Is there a way to do this ...
5
votes
2answers
1k views

How to control ylim for a faceted plot with different scales in ggplot2?

In the following example, how do I set separate ylims for each of my facets? qplot(x, value, data=df, geom=c("smooth")) + facet_grid(variable ~ ., scale="free_y") In each of the facets, the y-axis ...
11
votes
2answers
1k views

Relationship between plotting packages in R

I am just starting out with R, and beginning to start producing charts. I am aware that there are at least three different plotting packages, the standard one, ggplot2 and lattice. Are these ...
12
votes
2answers
3k views

R: What are the pros and cons of using Lattice versus ggplot2?

R: What are the pros and cons of using Lattice versus ggplot2?
2
votes
1answer
1k views

R & ggplot2: Sparklines from dynamic variables (based on query results)

I've written an SQL query that tells me the names of the previous week's top 10 most frequent Alarms. And I've written a query that takes those top 10 alarms and provides a YTD weekly totals for each ...
100
votes
15answers
11k views

Most underused data visualization [closed]

Histograms and scatterplots are great methods of visualizing data and the relationship between variables, but recently I have been wondering about what visualization techniques I am missing. What do ...
8
votes
2answers
2k views

Add a vertical line with different intercept for each panel in ggplot2

I'm using ggplot2 to create panels of histograms, and I'd like to be able to add a vertical line at the mean of each group. But geom_vline() uses the same intercept for each panel (i.e. the global ...
37
votes
6answers
12k views

Side-by-side plots with ggplot2 in R

I would like to place two plots side by side using the ggplot2 package (ie. do the equivalent of par(mfrow=c(1,2))). For example, I would like to have the following two plots show side-by-side with ...