0
votes
1answer
38 views

ggplot2: Changing which values are annotated on the x-axis

My question is certainly a replicate but I can't find the answer. On the x-axis the values that have a tick in my plot are: 2.5,5,7.5,10,12.5. I want to modify which values have a tick in order to ...
0
votes
1answer
306 views

Change distance between x-axis ticks in ggplot2

Right now I am producing a line graph with three observations. Hence, there are three x-axis ticks. I want to manually reduce the distance between the x-axis ticks and basically force the ...
0
votes
0answers
104 views

ggplot2 “expression” function not functioning

I can't get the expression function to display the values I need. I want to have superscript and greek letters in the y axis label, but it only shows squares in place of symbols. here is the data ...
0
votes
1answer
164 views

Draw circle in date axis with ggplot2

Now I draw plot with ggplot2. I want to draw circle in my plot. So I searched it and found the solutions. draw a circle with ggplot2 However I can't use this solution, because my plot's x axis is ...
0
votes
1answer
642 views

Adjusting y-axis line position in ggplot2

I'm trying to remove the space between the y-axis line and the first tick mark in my plot. Here's an example: set.seed(201) n <- 100 dat <- data.frame(xval = (1:n+rnorm(n,sd=5))/20, yval = ...
4
votes
2answers
289 views

how to set axis breaks to only a part of the axis?

In R, I plotted the following histogram. The problem is on the X axis. The majority of data fall into the interval [0, 10]. Very few have an X value larger than 10, although the largest one is 34. ...
7
votes
0answers
212 views

x axis on top of the figure in ggplot [duplicate]

Possible Duplicate: change position of tick marks of a single graph, using ggplot2 How can I get the x-axis on top of my plot using ggplot2/R? This question is similar, but in python.
3
votes
2answers
2k views

Normalizing y-axis in histograms in R ggplot to proportion

I have a very simple question causing me to bang my head on the wall. I would like to scale the y-axis of my histogram to reflect the proportion (0 to 1) that each bin makes up, instead of having the ...
2
votes
1answer
607 views

Using opts to change axis.line in ggplot2 doesn't function. How to do this?

While trying to get the answer to this question the obvious way, I ran into a rather unexpected error. I tried to set the option axis.line in the theme using the function opts(), tried to update it ...
9
votes
1answer
343 views

ggplot2 polar plot axis label location

This is just a extension for a old question ggplot2 polar plot arrows You will find the x axis is out of the most_out circle. In ggplot2, I use "panel.grid.major = theme_line(colour = "black", size ...
2
votes
1answer
2k views

add axis ticks and labels in ggplot2 r

Here is data. X <- 1:10 Y <- rnorm (length(X), 5, 2) ticks <- data.frame (t = c(5, 8, 9), l = c(1:3)) plot (X, Y, xaxt = "n") axis(1, at = ticks$t, labels = ticks$l) I want to do ...
1
vote
2answers
222 views

keep selected lines in x axis and label at particular segment in Y

Here is my plot dat <- data.frame( pos = c(1, 3, 5, 8, 10, 12), start = c(1,3, 6, 7, 10, 11), end = c(5, 6, 9, 9, 13, 12) ) library(ggplot2) p <- ggplot(dat) + geom_segment(aes(x=start, ...
1
vote
1answer
166 views

R ggplot2: How to get a function in with the text of the axis title?

I would like my plot axis title to include among the text a function that performs a calculation on some data. For example here are some data a<-data.frame(time="1000",x=rnorm(10,12,3)) ...
0
votes
1answer
288 views

Scatterplot axis labels are wrong when plotting dates

I am trying to do a scatter plot of 2 time series data - the data is stored in a data frame. The background of the image is quite grainy and axis labels are not visible when I do: ...
4
votes
1answer
729 views

Relative positioning of geom_text in ggplot2?

I am using geom_text to annotate plots in gglot2 and I want use relative positioning rather than absolute. That is, I want a position of (0.5, 0.5) to be dead center regardless of the x and y axis ...
4
votes
2answers
851 views

Overlapping axis labels when setting base_size in ggplot2

I'm changing base_size via theme_set. When I view the resulting plot on screen, it looks great. However, when I save it as a pdf, the x-axis label is a bit too close to the axis numbers. One small ...
1
vote
1answer
2k views

Setting axis intervals in ggplot

I have searched for this and can't believe I can't find it. Perhaps I've been asking the wrong question. I have a set of data laid out in a histogram that has a xlim of $2,000,000. I am trying to set ...
0
votes
1answer
482 views

Change axis ticks formatting and add lines to plot

I have an x-axis which is categorical. I would like to have the ticks along the axis be boxing the labels, as opposed to centered above them. I would also like to have vertical lines in the plot ...
2
votes
1answer
531 views

R & ggplot2: How to get arrows under the axis label?

I'm about to plot odds ratios with R/ggplot2 and I want to add two arrows underneath or next to the X-axis label. One pointing to the left, one pointing to the right, showing de-/increasing ...
5
votes
1answer
872 views

Rescaling the y axis in bar plot causes bars to disappear : R ggplot2

I am trying to create a barplot using ggplot2, with the y axis starting at a value greater than zero. Lets say I have the means and standard errors for hypothetical dataset about carrot length at ...
4
votes
1answer
578 views

Error Bar in R?

I am in need for a good errorbar function. I have already tried the package(psych) but in here I can't remove the x axis and I also tried the package(ggplot2) but in here I can't use a second y-axis. ...
1
vote
0answers
827 views

align axes in double plot ggplot R

How can I align the two ggplots in the following function so that the x-axis is corresponding between the table and the graph ? As it is now the interval between the "ticks" is less in the table. Any ...
3
votes
2answers
868 views

How to make ggplot2 plots prettier?

I have generated the following plot using the R code that follows it: ggplot(lengths, aes(length, fill = library)) + geom_density(alpha = 0.2) + coord_cartesian(xlim = c(0, 60000)) Now I would ...
1
vote
2answers
672 views

program R- in ggplot restrict y to be >0 in LOESS plot

Here's my code: qplot(data=sites, x, y, main="Site 349") (p <- qplot(data = sites, x, y, xlab = "", ylab = "")) (p1 <- p + geom_smooth(method = "loess",span=0.5, size = 1.5)) p1 + theme_bw() + ...
5
votes
1answer
364 views

Adding summary statistics (or even raw data points) to dodged position boxplots

Say you have the following dataset: trt <- ifelse(runif(100)<0.5,"drug","placebo") inj.site <- ifelse(runif(100)<0.5,"ankle","wrist") relief <- 20 + 0.5*(inj.site=="ankle") + ...