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
38 views
How to use facet_grid correctly in ggplot2?
I'm trying to generate one chart per profile with the following code, but I keep getting "At least one layer must contain all variables used for facetting." errors. I spent the last few hours trying ...
-2
votes
2answers
56 views
Legends for two different sized series in ggplot2@R
Is there a way to get legends for two series when plotted using ggplot in R?
May be I am missing some silly (should have known) argument in the function. I did not find the answer on the internet.
...
1
vote
0answers
90 views
Ggplot2: Heatmap + Bar chart combination and tweaking
I'm new to R and am trying to visualise data that is broken down by company and by year for a project at university. I want to try and add bars (as in bar chart bars) to the top and right hand side of ...
1
vote
1answer
78 views
+50
R ggplot2 fonts issue
I'm trying to get the xkcd fonts working in R with ggplot2. However I'm running into some issues.
Here is what I have done so far.
1) Installed the "Humor Sans" font from the xkcd site in the ...
1
vote
1answer
57 views
ggplot2 two data.frames, doesn't know how to deal with data of class uneval [duplicate]
I'm new to R and do not know how to plot two data.frames with ggplot2. I get the following error message: Error: ggplot2 doesn't know how to deal with data of class uneval
How can I put together my ...
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"))
...
3
votes
0answers
112 views
Positioning two legends independently in a faceted ggplot2 plot
I have a plot generated by ggplot2, which contains two legends. The
placing of the legends is not ideal, so I would like to adjust
them. I've been trying to imitate the method shown in
the answer to ...
-1
votes
1answer
43 views
Multiple time series plots using ggplot2 with each having unequal number of observations
I am looking for some help with multiple time series plot as per the following description.
I have a data frame with the following structure. Column isin is repeating and it has 5 unique values. For ...
1
vote
1answer
35 views
Can the bar labels appear centered on the appropriate bar in a combine bar/line graph?
Using the following data frame:
day <- c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week","Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week")
day <- factor(day, ...
2
votes
2answers
46 views
Combining new lines and italics in facet labels with ggplot2
I have a problem getting some words used in facet labels in italics. I use the following code to create new lines for the labels:
levels(length_subject$CONSTRUCTION) <-
c("THAT \n ...
1
vote
0answers
49 views
RStudio - ggplot not saving first plot when printing and saving multiple plots in a script [duplicate]
Here is the code to reproduce my problem:
library(ggplot2)
data <- data.frame(randomnums <- rnorm(50,100,200))
plot1 <- ggplot(data, aes(randomnums)) + geom_histogram()
print(plot1)
...
3
votes
1answer
42 views
how to deal with data of class uneval in ggplot
While trying to overlay a new line to a existing ggplot I am getting the following error:
Error: ggplot2 doesn't know how to deal with data of class uneval
The first part of my code works fine. ...
0
votes
1answer
28 views
reordering factor levels in ggplot2 doesn't fit the y geom_text annotation
I have a problem in ggplot2. If I reorder factor levels and I plot the text labels value (in this case frequency), the text label values still remains in the old levels.
What's wrong????
29 and 71 ...
1
vote
1answer
44 views
How to plot id and time
I have a csv file and I load the data in df.
time d e f id
1 -0.3813535 -0.3766915 1.2365178 a
2 -0.5192448 -0.8325136 0.7229763 a
3 0.3292604 -0.3832252 1.2250516 ...
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 ...
1
vote
1answer
74 views
ggplot2 ggsave function causes graphics device to not display plots
I've updated my ggplot2 library and I am now having a problem where after calling ggsave, the graphics device no longer displays the plot. I'm unable to resolve the issue meaning I cannot export the ...
0
votes
1answer
46 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 ...
0
votes
0answers
16 views
Using Cairo and ggplot2: empty plots when using source [duplicate]
I'm experiencing some strange behavior using Cairo and ggplot2. Am I missing something obvious?
My code:
# Let's learn some ggplot2
library(ggplot2)
library(Cairo)
NewPlot <- function(w=10, ...
0
votes
1answer
53 views
Add axis annotations in ggplot2
I have a ggplot2 graph with datetime on the x axis, and categorical on the y axis. I need to put 9 text annotations at certain dates on the x-axis, but there is no space to put the annotations within ...
0
votes
0answers
37 views
Can the bars be ordered when using a combined facet_wrap bar & line graph in R?
Using the following variables and data.frame d:
day <- c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week","Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week")
day <- factor(day, ...
0
votes
1answer
50 views
Shading confidence intervals manually with ggplot2
I have manually created a data set of life expectancies with accompanying 95% confidence bands. I plot these over the time scale but would prefer the bands to be shaded rather than dotted lines. ...
-7
votes
0answers
44 views
geom_bar(position=“dodge”) + standard deviation/standard erro bars in ggplot2 [closed]
My data contains two x-axis categories (SW, MW), numeric y-axis values, and want to dodge x-axis categories based on the color column, and also want to plot error bars (standard deviation) on y-axis ...
0
votes
1answer
21 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
1answer
29 views
Can the x-axis labels be ordered when using a combined bar & line graph in R?
Using the variables (day, month, count) in the data frame d, I use ggplot below:
day <- c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week","Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Week")
...
1
vote
0answers
55 views
Add total or average to ggplot with color legend
I have a plot with a color legend, and would like to add a total/average geom_... series to it.
For example:
d <- ggplot(data=mtcars, aes(x=cyl, y=mpg, color=factor(vs))) + geom_point()
d + ...
3
votes
1answer
72 views
How to create black and white transparent overlapping histograms using ggplot2?
I used ggplot2 to create two transparent overlapping histograms.
test = data.frame(condition = rep(c("a", "b"), each = 500), value = rep(-1, 1000))
test[1:500,]$value = rnorm(500)
...
0
votes
0answers
28 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 ...
8
votes
1answer
94 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
47 views
Creating Dendrogram with ggdendrogram
I'm doing cluster analysis and creating a dendrogram. I used ggdendrogram package and want to use its output in ggplot2. I wonder how get the same x-labels as the leaf-labels. Thanks
D1 <- ...
0
votes
1answer
31 views
Hide some heatmap axis-text
I have a heatmap with so many rows (thousands of cities) that for clarity I only want to show the names of a few of them. I still want to show the whole heatmap as the colors give a sense of the ...
4
votes
1answer
90 views
Convex hull ggplot using data.tables in R
I found a nice example of plotting convex hull shapes using ggplot with ddply here:
Drawing outlines around multiple geom_point groups with ggplot
I thought I'd try something similar--create ...
3
votes
1answer
41 views
how to prevent axes from intersecting in ggplot2
I'm using ggplot2 to make line graphs of some log-transformed data that all have large values (between 10^6 and 10^8); since the axes doesn't start at zero, I'd prefer not to have them intersect at ...
0
votes
0answers
28 views
export qplot output to pdf in R [duplicate]
Here is the code I used:
library(ggplot2)
pdf('testplot.pdf')
qplot(1:10, 2:11, geom=c('point', 'line'))
dev.off()
If i type these into an R session, everything is fine, but if I save these lines ...
2
votes
3answers
68 views
Save plot with a given aspect ratio
I'm working with the really awesome library ggplot2. I figured out how to set the aspect ratio of a plot by using coord_fixed. Now, I'd like to save the plot to a PDF with a specified width (e.g 10 ...
0
votes
1answer
36 views
Smallest size of GGplot2 geom_text()
I have a plot made with GGplot2. Now when i want to change the size of my text points within the plot, the size of the text does not change. I use the following line of code:
ggplot(data = out, aes(x ...
0
votes
0answers
48 views
scale_colour_manual R ggplot2 geom_tile() missing something?
G'day Everyone,
I am having a trouble figuring out how to specify the 'fill' colours for my graphs (below).
The different subsets of my data have different levels when I specify my 'fill' variable, ...
2
votes
3answers
56 views
geom_ribbon overlay when x-axis is discrete
I'd like to put an underlay on a set of boxplots to indicate the range of some data drawn from a separate source, and in a separate data frame. Making an overlay is easy; making an underlay is ...
3
votes
1answer
71 views
Plot data over background image with ggplot
I'm trying to plot some data over a background image. The problem is that both layers end up using the same scale. This is unfortunately problematic.
An example.
I want to plot some data over this ...
0
votes
1answer
39 views
How do I change the axis values on a boxplot in R?
I am working on some code where I have to plot MPG of all types of cars over several years. I am using geom="boxplot" in R and it returns the boxplots, but puts all the years as the axis values. I ...
2
votes
1answer
34 views
How to spatially separate rug plots from different series
I'm trying to graphically evaluate distributions (bimodal vs. unimodal) of datasets, in which the number of datapoints per dataset can vary widely. My problem is to indicate numbers of data points, ...
4
votes
1answer
95 views
Can't increase title and x/y label size in a ggplot2 plot saved as a PNG file, but it works fine on screen
I am hitting a small, but not insignificant brick wall with this oft asked and answered question.
I am using Rstudio 0.97.336 and R 3.0.0 on Linux. I am making a (much more complex) graph to put in a ...
5
votes
2answers
69 views
Colouring points by factor within the margin of a faceted ggplot2 plot in R
I'd like to create a faceted plot with margins in ggplot2. However, I'd like the margin plot to have colours according to from which facet the particular point has been derived. It's probably best ...
2
votes
2answers
58 views
Violin Plot (geom_violin) with aggregated values
I would like to create violin plots with aggregated data. My data has a category, a value coloumn and a count coloumn:
data <- data.frame(category = rep(LETTERS[1:3],3),
value = ...
2
votes
1answer
47 views
Add fake tick to x-axis in ggplot
I suppose the title says it all. I have a dataset without any data for day 0, but for illustration purposes I would like to include day 0 on a discrete x-axis, is this possible?
Example code below, ...
1
vote
1answer
66 views
Coloring density plot in ggplot2
When I use following code to generate a density plot:
require(ggplot2)
set.seed(seed=10)
n <- 10000
s.data <- data.frame(score = rnorm(n,500,100),
gender = ...
-6
votes
1answer
111 views
Several questions on ggplot2 [closed]
everyone, I am not familiar with ggplot2. Now I have questions on it. Here are the codes to produce one plot
data <- ...
1
vote
0answers
68 views
ggplot: showing % instead of counts. Multiple variables in a melted data.frame
I read this post about ggplot showing % instead of counts, but I cannot get it to work when I have a melted dataframe consisting of several factor variables.
This gives me a plot where the bars are ...
2
votes
0answers
52 views
Density plot in ggplot [duplicate]
Suppose I have following dataset:
set.seed(seed=10)
n <- 10000
s.data <- data.frame(score = rnorm(n,500,100),
gender = ...
2
votes
1answer
84 views
Not understanding the behavior of ..density
In the dataframe below, I would expect the y axis values for density be 0.6 and 0.4, yet they are 1.0. I feel there is obviously something extremely basic that I am missing about the way I am using ...
0
votes
1answer
79 views
Remove white space (i.e., margins) ggplot2 in R
I'm trying to plot a pie chart using GGPLOT2 in R. I want to do this in such a way as to omit the extra margin space.
What I'm doing is similar to what sharoz did in this post here except I want to ...



