ggplot2 is an actively maintained open-source chart-drawing library for R, written by Hadley Wickham, based upon the principles of "Grammar of Graphics". It partially replaces R's basic plot and the lattice package, while providing a clean, powerful, orthogonal and fun API.
3
votes
1answer
836 views
ggplot2: Use options for multiple plots
I would like to create 10 plots that have different data, but the same optical appearance. As an example, I’d like to change the colour of the gridline for each plot. This could be done by adding
+ ...
1
vote
1answer
69 views
is it possible to change angle of scales in ggplot2
As the question states, is that possible to change the angle of the text of a scale in ggplot ?
I mean, I would like the labels used on the x axis to be rotated by 90 degrees.
You can apparently ...
0
votes
1answer
61 views
legends are overflowing from the ggplot chart
I am using ggplot2 to chart bunch of items in one chart. Sincere there could be 1 to 60 or greater items, Iam using
ggplot(df, aes(Date, Value, colour=item, group=item)) + geom_point(size=0.4) + ...
5
votes
2answers
2k views
remove top and right border from ggplot2 [duplicate]
Is it possible to to remove the top and right border from ggplot2 graphs?
I.e, I'd like to keep the x and y-axis but remove the rest of the black frame that surrounds the graph.
//M
1
vote
1answer
28 views
How can i add a table to my ggplot2 output?
Is there a quick way to add a table to my ggplot2 graph? I would like this table to have the value of each line at the same breakpoints as specified in scale_x_continuous(), but with the percentage ...
0
votes
1answer
24 views
R Shiny multiple tabPanel in tabsetPanel not loading
I have used tabsetPanel in my ui.R and for each tabPanel there is a specific plot. The plots do not require any user input to be rendered. But only the first tab is loaded. When I switch tabs, they ...
-12
votes
0answers
97 views
How can I find the largest perpendicular of a polygon in R? [closed]
I'm trying to find the largest perpendicular for many separate polygons. I'm using ggplot to construct polygons from data.
I'm trying to avoid writing code to do this, I was wondering if a function ...
0
votes
2answers
58 views
tableGrob: set the height and width of a grid.table
I'm trying to make a function that will give me a plot ready for indesign, illustrator or inkscape. In trying to do so, I have 2 problems I cannot solve.
1) set the width and height of my plot (or ...
1
vote
2answers
30 views
Combining two ecdf plots with different
At the moment I`m writing my bachelor thesis and all of my plots are created with ggplot2. Now I need a plot of two ecdfs but my problem is that the two dataframes have different lengths. But by ...
5
votes
2answers
74 views
How to dynamically wrap facet label using ggplot2
I'm looking for a way to dynamically wrap the strip label text in a facet_wrap or facet_grid call. I've found a way to accomplish this using strwrap, but I need to specify a width for the output to ...
0
votes
0answers
27 views
add line segments showing the error between points of scatter plot and grid of surface3d
I'm very new to R, and I'm having trouble adding line segments showing the error between points of scatter plot and grid of surface3d.
Surface Data
x <- ...
3
votes
3answers
64 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 ...
1
vote
1answer
49 views
using R shiny server together with ggplot
Am using ggplot to plot a pie chart as in the code below in RStudio and its working fine. the problem is when i want to use R shiny server.
...
0
votes
1answer
37 views
Highlight point in ggplot2
I would like to highlight a single point (always the last) in ggplot2.
I have got most of the way there with the following, however there are a few issues. First, the color = 'red' part of the code ...
5
votes
2answers
948 views
More bullseye plotting in R
I'm using ggplot2 to make some bullseye charts in R. They look delightful, and everyone is very pleased - except that they'd like to have the values of the bullseye layers plotted on the chart. I'd ...
0
votes
1answer
33 views
Coloring slices of a pie bar as gradient in ggplot2
Imagine I have a pie bar in ggplot2,
data <- data.frame(cluster = paste("Cluster", 1:3), size = c(0.33, 0.33, 0.33))
data = rbind(data, data)
ggplot(data, aes(x = factor(1), fill = cluster, ...
1
vote
1answer
74 views
ggplot2 mapping county boundries in one color and state boundries in another on the same map
I am creating a choropleth county map with grey borders, and I also want to include the state boundries in black. Does anyone know how I go about adding a second layer of state mapping to an existing ...
1
vote
0answers
52 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
712 views
creating columns within a legend list while using ggplot in R code
I am plotting 15 lines using ggplot (package name: ggplot2), each representing a separate entity and wish to create a legend for the same. However, I am not able to divide the legend entries into more ...
5
votes
3answers
61 views
Error bars on stacked bar ggplot2
I'm struggling to put error bars into the correct place on a stacked bar. As I read on an earlier post I used ddply in order to stack the error bars. Then that changed the order of the stacking so I ...
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 ...
0
votes
1answer
25 views
ggplot 0.9.3 issue with facet_wrap, free scales and coord_flip - 2nd try
An old code that used to work perfectly no longer works with 0.9.3. The issue is related to the use of facets, free scales and coord flip.
Here is a way to reproduce:
data set: d.csv:
...
1
vote
1answer
51 views
Using ggplot2, connect x- and y-coordinates by a third variable
I would like to plot latitude vs longitude and connect the points via date and time, which I have stored in an object of class POSIXlt. I have many, many GPS points, but here is a small set of them ...
0
votes
1answer
27 views
Stacked bar plot in r with summarized data
I'm New to r. Im trying to make a stacked bar plot. I could make it work using the barplot function. However I could not work out how to make the legend look nice. Now i'm trying to use ggplot2 but I ...
3
votes
1answer
46 views
Reorder() not correctly reordering a factor variable in ggplot
I'm baffled as to why the boxplots are not ordering in this plot:
set.seed(200)
x <- data.frame(country=c(rep('UK', 10),
rep("USA", 10),
...
0
votes
1answer
40 views
Use of facet_wrap in ggplot2
Want facet_wrap to have different parameters for each plot. Example below:
x = c(43,22,53,21,13,53,23,12,32)
y = c(42,65,23,45,12,22,54,32,12)
df = cbind(x,y)
df = as.data.frame(df)
meany = ...
4
votes
1answer
1k views
How to tell R's ggplot2 to put tick marks for some values of x-axis and still keep vertical lines for other values
I am creating a times series using ggplot2 in R. I would like to know how to show tick marks in the x-axis only for the months that are labeled (e.g. Mar 07, Mar 08, etc) while keeping the vertical ...
-3
votes
0answers
33 views
Create stacked barplot using ggplot2 [closed]
I would like to create a stacked barplot with the made up data below using ggplot2. I have several similar plots to make. I would like the bars to be black and white as I am printing in black and ...
0
votes
1answer
51 views
An issue with a legend in ggplot2
I am asking you because I have a problem with a legend in ggplot2.
Here's a simplified case
library(ggplot2)
library(datasets)
bp <- ggplot(data=PlantGrowth, aes(x=group, y=weight, fill=group, ...
3
votes
1answer
47 views
ggplot: stacking different plots in a facet manner
To train with ggplot and to improve my skills in writing R functions I decided to build a series of functions that produces survival plots, with all kinds of extras. I managed to build a good working ...
2
votes
1answer
2k views
facet label font size
is there a way to change to font size of facet labels in ggplot? I google a bit and found that that issue was yet on Hadley's to do list. I wonder if there's a workaround or any news on this issue.
...
0
votes
2answers
32 views
ggplot2 annotate using a measure unit other than the axis variable
Hi I've got the following code
d1=data.frame(a=c(4,5,6,7),b=as.Date(c('2005-12-31','2006-12-31','2007-12-31','2008-12-31'),"%Y-%m-%d"))
a = ggplot(d1,aes(x=b,y=a)) + geom_line()
a + ...
1
vote
2answers
40 views
reshape/remould data frame to create normalized bar chart and pie chart
I have the following data_frame structure which has been read from a csv file (appended). Basically, this summarises for each Operator (A M D L J) whether their score is Excellent, Good, Ok, Poor or ...
238
votes
6answers
20k views
How can we make xkcd style graphs in R?
Apparently, folk have figured out how to make xkcd style graphs in Mathematica and in LaTeX. Can we do it in R? Ggplot2-ers? A geom_xkcd and/or theme_xkcd?
I guess in base graphics, par(xkcd=TRUE)? ...
0
votes
1answer
33 views
How to change where the horizontal axis crosses the vertical axis in geom_bar?
Here's how I want it to look (made in Excel):
And here's the template code:
library(ggplot2)
data <- c(0.3,0.4,0.5,0.6,0.7,0.8)
qplot(x=1:6, y=data, geom="bar", stat="identity")
Edited after ...
-1
votes
0answers
30 views
Pairs Formula function programming in R, upper, middle lower levels
I'm having a difficult time programming the pairs function in r, so i can setup upper, middle and lower panels of correlation, histogram and loess respectively. My panel Data looks like this: ...
0
votes
1answer
31 views
Size and space between subplots in ggplot2
I have a subplot as following
mydata <- data.frame(side1=rep(LETTERS[1:3],3,each=9),side2=rep(LETTERS[1:3],9,each=3),widget=rep(c("X","Y","Z"),9*3),size=rep(1/3,9*3),strength=runif(27,-1,1))
...
2
votes
1answer
34 views
How to put space between groups of stacked bars in ggplot2
I'm trying to group the stacks spatially in pairs such that the 0W treatment is close to the corresponding 6W treatment with bigger spaces between pairs of different treatments. I've included a ...
1
vote
0answers
41 views
adjusting midpoint in scale_colour_gradient2()
So I'm generating a heatmap of p-values using the following:
library(ggplot2)
p <- ggplot(res, aes(x=group, y=variable)) +
geom_tile(aes(fill = value), colour = "yellow") +
scale_fill_gradient(low ...
1
vote
1answer
25 views
Display the x-axis on ggplot as month only in R
I have a very simple question here. I have a dataset from 2009-2012. I want to plot the data with facets. I have created the faceted plot as follows.
R-code
...
-1
votes
0answers
33 views
How to control the numbers of breaks when using “scale_continuous”? When use “facet” I hope every group has the same number of breaks on x-axis
How to control the numbers of breaks when using "scale_continuous"? When use "facet" I hope every group has the same number of breaks on x-axis.
The basic script is
m + ...
2
votes
2answers
65 views
Can colors and shape be changed on a combined line and point plot while maintaining one legend per graph?
Using the following data frame:
day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, ...
0
votes
1answer
51 views
Adding a legend to ggplot with facet_grid
I am creating a 3x3 faceted graph using the code shown below. The problem is I get no legend.
# Create column vectors
XID <- rep(c(1,5,10), each=57)
TAD.unit <- c(0, 0.25, 0.5, 0.75, 1, 1.5, 2, ...
2
votes
0answers
66 views
ggplot 0.9.3 issue with facet_wrap, free scales and coord_flip
This simple code from a sample demo does not work anymore in 0.9.3.
require(ggplot2)
p <- qplot(displ, hwy, data = mpg)
p + facet_wrap(~ cyl, scales = "free_y") + coord_flip()
The above code now ...
-1
votes
1answer
39 views
geom_smooth: what is its meaning (why is it lower than the mean?)
I have data on the number of trips people make to work per week. Along with the distance of the trip, I am interested in the relationship between the two variables. (Frequency is expected to fall as ...
1
vote
1answer
39 views
ggplot2, how do you use access dataframe elements from within the function?
I'm trying to create plots in with ggplot2 to standardize the creation of many similar plots. Given you can stack numerous options, using theme(), stat_*(), or geom_*() with the + operator, how can ...
1
vote
0answers
24 views
error installing ggplot2/digest in R
I receive the following error after trying to install ggplot2 which in turn tries to install digest. The session info is pasted below.
sha2.c(88): catastrophic error: #error directive: Define ...
72
votes
2answers
25k views
Rotating and spacing axis labels in ggplot2
I have a plot where the x-axis is a factor whose labels are long. While probably not an ideal visualization, for now I'd like to simply rotate these labels to be vertical. I've figured this part out ...
1
vote
1answer
29 views
Create minor gridlines in ggplot2 for categorical data
I would like to add minor gridlines to categorical data on plot produced with ggplot2. For example,
library("ggplot2")
data<-data.frame(xcategory=rep(c("a","b","c"),each=30), yvalue=c(1,3,6))
...
0
votes
2answers
41 views
Change color of hline by group: ggplot2
I have a facet_grid plot with 2 geom_hlines per plot. I'd like to color each of those lines separately. I thought if I added this color to the geom_hline dataframe I could supply the color inside of ...



