1
vote
1answer
20 views

Overlay lines and hist with ggplot2

I'm creating a table with a lot of plot using ggplot a=rnorm(30) b=a*a c=rnorm(30) d=c l=runif(30) m=l+3 data=data.frame(A=a,B=b,ss=1) data=rbind(data,data.frame(A=c,B=d,ss=2)) ggplot()+ ...
3
votes
2answers
60 views

How to arange a heatmap and an scaterplot one above the other in ggplot2

I am a newbie using ggplot2 and I'm trying to plot a scatter plot above a heatmap. Both plots have the same discrete x-axis. This is the code I'm trying: library(ggplot2) library(grid) ...
3
votes
3answers
74 views

Reduce PDF file size of plots by filtering hidden objects

While producing scatter plots of many points in R (using ggplot() for example), there might be many points that are behind the others and not visible at all. For instance see the plot below: This ...
0
votes
1answer
33 views

ggplot failing to plot the correct color

ggplot2 seems to have gone haywire in my machine. No matter what color I specify, it seems to print the lines in red! For example, the following code also prints the plot in red (image attached). df ...
8
votes
1answer
96 views

How can I remove the strange white margin around my .png (plotted with r, ggplot)?

I save plots with ggplot as .png. The background has to be black, but there is allways a small white margin (only top, down an left; not right). How can I remove this margin? Thank you! Here is my ...
1
vote
1answer
76 views

Control ggplot2 legend look without affecting the plot

I'm plotting lines with ggplot2 like this: ggplot(iris, aes(Petal.Width,Petal.Length,color=Species)) + geom_line() + theme_bw() . I find legend marks to be small so I want them to be bigger. If I ...
4
votes
2answers
48 views

How do I specify axis thickness in a plot? (in R)

I am using using plot(), matplot() and ggplot(). I am guessing the answer will be the same for all of them. I want to specify the thickness of the y-axis, the x-axis, and the other two lines that ...
0
votes
1answer
67 views

Open many files and plot colour by dataset in R

I am a newbie to R and I am sure this is simple, but I am not sure what terms to search for. I have a series of data files in directories, each with the same format (tab separated, each has X_DATA ...
2
votes
2answers
78 views

Keep or set the ratio between text labels and size of plot in grid.arrange

I am trying to arrange 2 plots created using ggplot2 and would like the plots to be the size of a square and one next to the other, with the common legend next to them, so that the image fits nicely ...
2
votes
1answer
89 views

How to remove one outlier in ggplot2 facet point_plot that squash the rest of the data

I produced a faceted plot that I'm very satisfied with except for one issue. On a couple of the plots, one or two outliers completely ruin the graph. I could use y_lim function, but I'm using ...
1
vote
1answer
51 views

Flip ggdendrogram plot

I'm using a ggdendrogram to plot a dendrogram, but I want to have the labels on the left to make the graph more intuitive. How do I do this? Thanks!!! library(ggplot2) library(ggdendro) ### Data ...
1
vote
1answer
72 views

how to make dotplots with smoothed density fit in ggplot2?

I am making this dotplot in ggplot2: ggplot(mtcars, aes(x = mpg)) + geom_dotplot() I want to show some sort of smoothed density fit to the observed dots on top of the dotplot. This does not look ...
0
votes
1answer
73 views

How to plot stacked point histograms in ggplot2 in R?

What's the ggplot2 equivalent of "dotplot" histograms? With stacked points instead of bars? Similar to this solution in R: Plot Histogram with Points Instead of Bars Is it possible to do this in ...
5
votes
1answer
43 views

Segment annotation on log10 scale works differently for the end and the beginning of the segment?

I found a rather confusing feature in ggplot while trying to annotate segments on log10 scale. Following code produces the plot below: library(ggplot2) dat <- data.frame(x = x <- 1:1000, y = ...
0
votes
1answer
58 views

R: ggplot specifying column with its index rather than name

I have written a function to get the Proportional Stacked Bar plot using ggplot function. Right now I am using Column name in this ID. PropBarPlot<-function(df, mytitle=""){ ...
0
votes
1answer
55 views

Plotting data together in R

i am new to R. I heard that R has awesome tools to plot the graphs. I have 3 data sets like this: 0.01 2 0.02 3 0.03 4 as file1.txt and 0.015 3 0.024 6 0.34 56 as file2.txt. I want ...
1
vote
1answer
46 views

R: Not able to save the plot [duplicate]

I am generating a plot which I am able to see in the RMarkdown output but whenever I am trying to save it, I am getting just a blank(white) image. I am just adding following two lines before and after ...
3
votes
2answers
106 views

plotting monthly and yearwise weather data in r

I am trying to develop a weather plot like that appears in weather data - something like. I want to plot daily value (although average value can appear in circle). I am using ggplot2 as it need ...
2
votes
1answer
65 views

How to plot stacked proportional graph?

I have a data frame: x <- data.frame(id=letters[1:3],val0=1:3,val1=4:6,val2=7:9) id val0 val1 val2 1 a 1 4 7 2 b 2 5 8 3 c 3 6 9 I want to plot a stacked bar plot ...
5
votes
1answer
181 views

Plots on a map using ggplot2

An interesting ggplot2 challenge! I would like to produce a barplot for each location on a map using ggplot2, as was done by xingmowang with base graphics and a number of packages: ...
0
votes
0answers
85 views

plotCI in R for thousands of points

I was wondering if someone has a good suggestion on how to plot CIs in R for thousands of points. I'd like to plot the CI for each point, and then also plot the TRUE value on top (simulated data) to ...
1
vote
1answer
73 views

plotting a cumulative ribbon in ggplot R

I would like to create a bar plot with a shaded ribbon showing the cumulative value: require(ggplot2) plot_data = data.frame(period=factor(c("t_1", "t_5_to_t_2", "t_8_to_t_2", "t_11_to_t_2", ...
2
votes
1answer
66 views

getting the \to symbol in LaTex into ggplot2 in R

I am attempting to get the following expression into the tick marks of my ggplot2: x \to y where \to is the usual latex arrow symbol. what is the right way to do this? expression(x%to%y) does not ...
0
votes
1answer
73 views

R, ggplot2, skip printing x values

This might be fairly simple but yet i cant seem to find out how to do it. I got a nice plot with a group of lines of values in it. The y represents an amount, the x represents dates. The problem is ...
0
votes
1answer
55 views

How to enlarge panel to contain long legends label

I have data that looks like this. My current code here library(ggplot2) library(RColorBrewer) pal <- c(brewer.pal(8,"Dark2"),brewer.pal(12,"Paired")); ...
0
votes
1answer
77 views

GGPLOT - How to differentiate line according to predefined label and add text in x-axis

I have a distributions file that looks like this: Function Freq foo 1117 ... qux 1992 .. bar 4158 .. The complete data can be downloaded here. What I want to do is to create density plot, with ...
1
vote
1answer
121 views

How to properly highlight points in ggplot2 plots that use facets

In the following example I create two series of points and plot them using ggplot2. I also highlight several points based on their values library(ggplot2) x <- seq(0, 6, .5) y.a <- .1 * x -.1 ...
21
votes
3answers
350 views

Making a circular barplot with a hollow center (aka race track plot)

I was asked to recreate the following style of plot. (Please ignore the question of whether this is a good type of visualization and charitably consider this as adding a colorful element to a numeric ...
1
vote
0answers
56 views

Annotation Track in Gviz

Does anyone with experience using the bioconductor package: Gviz know how to add an AnnotationTrack directly over a DataTrack? For example, in ggplot2 I can add to a prexitsting plot using + ...
1
vote
1answer
72 views

Plotting family of functions with qplot without duplicating data

Given family of functions f(x;q) (x is argument and q is parameter) I'd like to visulaize this function family on x taking from the interval [0,1] for 9 values of q (from 0.1 to 0.9). So far my ...
1
vote
2answers
109 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 <- ...
2
votes
2answers
167 views

ggplot2 mapping variable to y and using stat=“bin”

I am using ggplot2 to make a histogram: geom_histogram(aes(x=...), y="..ncount../sum(..ncount..)") and I get the error: Mapping a variable to y and also using stat="bin". With stat="bin", it ...
2
votes
1answer
168 views

In-plot axis text in ggplot2

I'm new to ggplot2, and I have a bar plot of mean responses that I Frankensteined out of sample code. dput() output to reproduce graph: > dput(mainerrors.df) structure(list(sex = structure(c(1L, ...
0
votes
1answer
75 views

Modifying geom_ribbon borders

I am plotting a series of means and standard deviations over time with code below, and am trying to use geom_ribbon to display the sd's, see below. Due to the significant overlap I'd like to add a ...
-8
votes
1answer
132 views

how can I draw this figure in ggplot2? [closed]

I just came across to this figure in a paper and I'd like to draw a similar one using ggplot2 in R. Any tips? Thanks!
2
votes
2answers
228 views

How to create faceted correlation plot using GGPLOT

I have a data frame created the following way. library(ggplot2) x <- data.frame(letters[1:10],abs(rnorm(10)),abs(rnorm(10)),type="x") y <- ...
4
votes
2answers
66 views

Change line style depending on third variable - R

Following my dataframe, using dput(): structure(list(year = 1984:2007, ger.90.10.ratio = c(3.1, 3.09, 2.98, 2.93, 2.98, 2.96, 2.95, 3.12, 3.16, 3.13, 3.24, 3.3, 3.28, 3.24, 3.24, 3.17, 3.23, 3.31, ...
0
votes
1answer
96 views

customizing grid for dotchart in ggplot2?

How can I plot a dotchart like lattice's dotchart in ggplot2 that has thicker grid lines and only horizontal grid lines (ie remove the vertical grid lines), kind of like this: Except make the ...
1
vote
1answer
131 views

Why does my user supplied label in geom_text in ggplot2 generate an error?

First some background. I'm trying to create a waterfall plot using ggplot2. I have written the following function that does the trick. However, I have a small issue when trying to provide a user ...
0
votes
1answer
84 views

Create a barplot of two tables of differing length

I can not seem to figure out how to get a nice barplot that contains the data from two tables that contain a different number of columns. The tables in question are something like (snipped some data ...
1
vote
1answer
183 views

ggplot2: How to specify multiple fill colors for points that are connected by lines of different colors

I am new to ggplot2. I would like to create a line plot that has points on them where the points are filled with different colors than the lines (see the plot below). Suppose the dataset I am ...
1
vote
1answer
156 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
184 views

fitting more than one regression line to a scatterplot in R

I'm trying to fit regression lines to this relation angc~ext. Variable pch divides the data into two sets to each of which I want to fit a regression line with its confidence intervals. Here's my ...
3
votes
1answer
156 views

Format the ggplot2 map

I´m trying to produce a worldmap using ggplot2 in R. I want to show GDP per capita from Brazilian States. There are 2 problems: In the center of Country have two labels aren't easy to read the ...
1
vote
0answers
26 views

Does ggplot's vjust of axis.text depend on angle? [duplicate]

I'm trying to lower the axis tick-labels using ggplot, but am running into unexpected difficulties. "hjust" works fine, but ggplot's "vjust" parameter seems to depend on the value of "angle". The ...
3
votes
1answer
187 views

How to join efficiently multiple rgl plots into one single plot?

I produced 3D plots with the rgl package for each factor level of my data and saved them as pngs. My data has 30 different levels, which resulted in 30 different image files. Now I would like to ...
5
votes
3answers
115 views

How to Unearth the Buried Regression Line in GGPLOT

Currently my regression plot looks like this. Notice that the regression line is deeply buried. Is there any way I can modify my code here, to show it on top of the dots? I know I can increase the ...
0
votes
3answers
121 views

Graph data in pairs as segments [closed]

I am attempting to plot pairs of points because this is the format in which they occur. This data describes commercial parts (electronic components) whose behavior is described as ranging between two ...
0
votes
1answer
248 views

Barplot with 2 variables side by side

I am trying to get a barplot which is fairly common, but despite reading tons of documentation on plotting in R, and the documentation of ggplot and all its layers, I cannot get this plot the way I ...
1
vote
1answer
207 views

barplot of percentages per category, per variable

Given the following example data: df<-data.frame(cbind(cntry<- c("BE","ES","IN","GE","BE","ES","GE",NA,"IN","IN"), gndr<- c(NA,1,2,2,2,2,1,1,1,2), plcvcrcR<-c(0,1,NA,0,0,1,1,1,0,0), ...

1 2 3 4 5 6