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.

learn more… | top users | synonyms (2)

1
vote
1answer
40 views

R plotting mean and standard deviation of simple dataframe without data manipulation

I have a simple dataframe data V1 V2 V3 V4 V5 1 3 3 3 5 6 2 3 4 6 10 12 3 5 6 8 10 11 4 4 5 7 9 11 5 2 3 5 8 9 This data represents performance during the game for each round. ...
0
votes
0answers
27 views

R: get(): can't work out the correct environment for get within a function using ggplot2

Inspired by the Rattle library, I am trying to construct a function called density_plot which takes a numeric column from the weather data set and plots its distribution by raintomorrow. However, the ...
0
votes
1answer
28 views

How to plot contours on a map with ggplot2 when data is on an irregular grid?

Sorry for the wall of text, but I explain the question, include the data, and provide some code :) QUESTION: I have some climate data that I want to plot using R. I am working with data that is on ...
-1
votes
1answer
20 views

Error in Data Frame when creating a plot with ggplot2 and geom_point() and stat_function

I've got a problem when creating a plot with ggplot2 > setwd("c:/tesis/emisiones") e<-read.csv("fh3pco1.csv",header=T) attach(e) names(e) 1 "VehCat" "Component" "TrafficSit" ...
0
votes
1answer
17 views

Display just the first x value and change the scatter colour

In below code I'm attempting to change the colour of the scatter points to blue and limit the number of 'x' entries to 1 using xlim=c(0,1) & color='blue' Here is the code : xx = c('test1' , ...
0
votes
1answer
37 views

R: weird y-axis in frequency/density plot (ggplot2)

I have data from two samples and I want to plot a frequency distribution plot in R. I have the reference done in Excel: I uploaded in R the data (HistSerp). It's 136 obs. of 2 variables. ...
0
votes
2answers
39 views

Multiple separate plots in one go

Using ggplot2: qplot(carat, price, data = diamonds) + facet_grid(cut ~ color ~ clarity) Not quite what I hoped. How could something like this be done, except producing separate grids of plots per ...
2
votes
1answer
55 views

Overlay raw data onto geom_bar

I have a data-frame arranged as follows: condition,treatment,value A , one , 2 A , one , 1 A , two , 4 A , two , 2 ... D , two , 3 I have used ...
1
vote
1answer
43 views

create templates using ggplot2 syntax?

I wonder if it's possible to create a similar set of figures in ggplot2 and just change the data somehow. For instance, I can create a function to accomplish this task: plot1 <- function(data) ...
2
votes
1answer
60 views

How NOT to display value 0 in a stacked bar chart using ggplot2

I've managed to create a stacked bar chart using ggplot2, but one of the data value is 0. Is there a way to show all other data values, except 0? dat <- data.frame(matrix(NA, ncol=3, nrow=21)) ...
1
vote
1answer
28 views

R ggplot2 stacked barplot, defining bar colors

I'm very close to what I want to achieve but can't find a way to add the finishing touch to my graph. Here's what I have, with foo data and code to produce the graph. Melted data from the reshape ...
0
votes
0answers
19 views

Installing ggplot on SolusOS

I've installed R and Rstudio on a netbook running SolusOS (Debian) and those installations seem to be working OK. However I've had no success with installing the R package ggplot2 . I've tried the ...
-3
votes
0answers
29 views

How to change legend title in line plot ggplot2 [closed]

Hello i have this code ggplot(datos, aes(datos$Threshold)) + geom_line(aes(y=datos$MCC_Sox2,colour="MCC Sox2")) + geom_line(aes(y=datos$MCC_Oct4,colour="MCC Oct4"))+ xlab("Threshold [%]") + ...
0
votes
1answer
38 views

Modify a legend in ggplot2

Good afternoon everyone, I have a question about ggplot2. Here is a simplified version of my problem I have a graphic with four lines with a color for each line. My code is : library(ggplot2) ...
0
votes
1answer
15 views

changing the range of counts in stat_binhex

I wanted to expand the range of counts in stat_binhex. The toy example listed on the site, http://docs.ggplot2.org/0.9.3.1/stat_binhex.html, has a range for counts in the legend field, and I wanted to ...
2
votes
1answer
35 views

Drawing a triangle with geom_polygon

Hi there I need some help drawing a simple triangle library(ggplot2) library(data.table) dt.triangle <- data.table(group = c(1,1,1), polygon.x = c(2,4,4), polygon.y = c(1,1,3)) p <- ggplot() ...
0
votes
1answer
15 views

how do you present data on the right side of the y-axis in ggplot2

i have this data frame, called test. It has 3 columns, DATE, USED_CORES RELATIVE_PERCENT. I would like to create a ggplot where I would like to show DATE on the xaxis, RELATIVE_PERCENT on the yaxis ...
0
votes
1answer
25 views

R splitting data.frame into sub data.frames to facet in ggplot2

I have a data.frame (appended) with ~537 rows from which I would like to plot some histograms. I would like to subdivide the data frame into say chunks of 50 or 100 and plot the histograms side by ...
1
vote
2answers
56 views

GGmap map of the world

I am trying to obtain a simple raster map of the entire world, using the ggmap package / get_map functionality (see code below) in combination with ggplot2. The zoom levels only go towards "3", and do ...
0
votes
0answers
37 views

Stacked and beside bar plot with percentage on y-axis

I have a dataframe in R with ~7000 rows. 10 rows of my data frame are shown- TypeA TypeB Ct_for_typeA Ct_for_typeB code3 code2 m n code4 code1 m p code3 ...
0
votes
0answers
32 views

Reorder bars within ggplot2 dodged barplot, levels are correct

I'm making a series of barplots, all fairly similar to this one that I use the following code to generate. I've seen many posts about this, but I have tried to change the order of the variable of ...
1
vote
1answer
21 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()+ ...
1
vote
2answers
37 views

force boxplots from geom_boxplot to constant width

I'm making a boxplot in which x and fill are mapped to different variables, a bit like this: ggplot(mpg, aes(x=as.factor(cyl), y=cty, fill=as.factor(drv))) + geom_boxplot() As in the example ...
1
vote
1answer
35 views

Overlap time series with different dataframes

I am using different time series in order to plot a graph with recession bars. For the single graph it works fine. However, I would like to overlap the different time series in one single graph. I ...
3
votes
2answers
67 views

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

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) ...
0
votes
0answers
23 views

Axis ticks misalignment and labeling in ggplot2 using scale_y_log10()

I am attempting to make a figure similar to this: with log ticks on the y axis and not the x. I've been able to produce this with the following code: setwd('/Users/marleyjarvis/Desktop/') ...
1
vote
2answers
39 views

how to insert custom legend at the bottom of ggplot2 chart

I am creating a ggplot2 graph with model, data points and couple horizontal lines. I need to be able to put a legend on the bottom of the chart that states blue color line is for the model, red is the ...
0
votes
2answers
36 views

ggplot2 geom_errorbar in reshaped data

In the data.frame appended I would like to trend device sensitivity at 2 distances with measurement t date, facetted by monitor. This is pretty straightforward in ggplot2. First melt the data usinge ...
-2
votes
0answers
40 views

why the alpha parameter of ggplot2's geom_smooth() function doesn't control the line's transparency

I want to change the line's transparency with the alpha parameter, but just change the se shade. how can i modify my r code to fix this. geom_smooth(se=F,alpha=.1)
-6
votes
0answers
40 views

Line plot with ggplot2 [closed]

I was asked to do a line plot with ggplot2 i have a csv file, separated with ";" Threshold MCC 100 0 99 0 98 0 97 0 96 0.4082312693 95 ...
1
vote
2answers
75 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
36 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 ...
1
vote
2answers
37 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 ...
3
votes
3answers
80 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
42 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
3answers
103 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 ...
1
vote
1answer
57 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. ...
1
vote
0answers
55 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 = ...
1
vote
1answer
114 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 ...
6
votes
3answers
71 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 ...
0
votes
1answer
29 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 ...
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 ...
3
votes
1answer
48 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), ...
-3
votes
0answers
35 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 ...
3
votes
1answer
55 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 ...
0
votes
1answer
54 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, ...
1
vote
2answers
41 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 ...
0
votes
1answer
45 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 = ...
0
votes
1answer
38 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
37 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 2 3 4 5 61