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.
0
votes
0answers
15 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/')
...
0
votes
2answers
28 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
27 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
36 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
34 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
1answer
53 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 ...
-12
votes
0answers
126 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
1answer
30 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
34 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
72 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
0answers
32 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 <- ...
0
votes
1answer
39 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
85 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
52 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
53 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
82 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
64 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
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),
...
-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 ...
3
votes
1answer
52 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
52 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
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 ...
0
votes
1answer
43 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
33 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
36 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 ...
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
0answers
42 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
27 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 + ...
-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: ...
1
vote
0answers
25 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 ...
0
votes
1answer
34 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, ...
0
votes
1answer
28 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
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
votes
1answer
41 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
30 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))
...
1
vote
1answer
30 views
When using “geom_histogram” there is error “unit(tic_pos.c, ”mm“) : 'x' and 'units' must have length > 0”. Why
When using geom_histogram there is error
unit(tic_pos.c, "mm") : 'x' and 'units' must have length > 0.
Why?
p4<-ggplot(BCIcor,aes(x=cor))+geom_histogram(binwidth = 0.2)
This showed a ...
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 ...
0
votes
1answer
36 views
merge 2 plots (bubblechart, scatterplot) in R
I am new to this and also new to R so i hope I provide sufficent information.
I have 2 kinds of datasets:
1 with temperatures,dates (more rows than the other dataset);
1 with ...
0
votes
3answers
39 views
ggplot2 colour geom_point by factor but geom_smooth based on all data
In ggplot2, the following command p <- qplot(wt, mpg, data=mtcars, colour=factor(cyl)) taken from here plots a scatter plot with each point coloured according to factor
I would like to fit all ...
-2
votes
1answer
44 views
ggplot + r panel data too much data in graph + interactive points + selecting specific variables
i have some questions if anyone can help.
I have a panel data such as, example:
Country Name Year GDP PPP HHH
USA 1960 7 9 10
Uk 1960 9 10 ...
0
votes
1answer
56 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, ...
0
votes
1answer
48 views
adding geom_hline+ Sample Size to a boxplot
Using ggplot, I am trying to
add a horizontal line to boxplot
add the sample size to x axis.
I have the following dataset:
Site, Aluminum_Dissolved, Federal_Guideline
M1, 0.1, 0.4
M1, 0.2, ...
3
votes
1answer
29 views
Create geom_ribbon for min-max range
Given the following data:
df<-data.frame(
year=(1996:2000),
a=c(2,1.5,1.5,2,3),
b=c(2,2,2,3,4),
c=c(2,3,3,1,1))
with ggplot:
ggplot(df,aes(x=year))+
geom_line(aes(y=a))+
...
-1
votes
2answers
39 views
Plot data from several large data files in ggplot
I have several data files (numeric) with around 150000 rows and 25 columns. Before I was using gnuplot (where script lines are proportional plot objects) to to plot the data but as I have to do now ...
2
votes
2answers
67 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, ...
1
vote
1answer
58 views
horizontal line; y axis as factor: ggplot2
If I have a factor for my y variable and try to use geom_hline in facet_grid I get an error:
p <- qplot(mpg, factor(sample(c("a", "b", "c", "d"), nrow(mtcars), T)), data=mtcars, facets = vs ~ am)
...
0
votes
1answer
27 views
Can the minimum y-value be adjusting when using scales = “free” in ggplot?
Using the following data set:
day <- gl(8,1,48,labels=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
day <- factor(day, level=c("Mon","Tues","Wed","Thurs","Fri","Sat","Sun","Avg"))
...


