Linked Questions

0 votes
1 answer
13k views

I need to create a break in the y-axis, so I can show very low values, skip 90% of the y-axis and then show the very high values. How would I do this in r with ggplot? Code is not needed, this is ...
SantiClaus's user avatar
1 vote
1 answer
8k views

I have used Thinkcell, and one of its cool features is that it breaks very long y-axis to fit the graph. I am not sure whether we can do this with ggplot2. I am a beginner in ggplot2. So, I'd ...
watchtower's user avatar
  • 4,358
2 votes
1 answer
3k views

Possible Duplicate: Using ggplot2, can I insert a break in the axis? I'm using the following ggplot2 code to generate a faced_grid barplots: ggplot(plotobj, aes(as.factor(gm) , peaks, fill=rvalue)...
Sander's user avatar
  • 801
6 votes
0 answers
3k views

I am having trouble with scaling my barplots when there are some extreme counts. As it goes up much higher it is extremely difficult to see the lower counts and compare them on a plot. I would like ...
StatMan's user avatar
  • 145
0 votes
3 answers
899 views

I want to include a jump in my plot. Thy y-axis should start from 0 but the there should be a break which goes to 1500 and from there in 100 unit increments up to 2000. This works in my code, but the ...
JanSch's user avatar
  • 3
1 vote
0 answers
495 views

I want to add a zig-zag to the bottom of an y-axis to a ggplot2 plot using grid functions. This should be doable by retrieving the axis grob from the gtable that is created by the print and adding ...
Max Gordon's user avatar
  • 5,487
0 votes
0 answers
488 views

I'd like to cut the y axis of my barplot in two parts. The cutoff should be 5000 in the y axis. I don't know how to deal with this in ggplot. I'm quite new and I would appreciate any help. ggplot has ...
cucurbit's user avatar
  • 1,472
0 votes
0 answers
509 views

ggplot(data= data,aes=(x=parameter,y= Count,fill=value)) + geom_bar(position="dodge",stat="identity")+ cord_flip() I want to get break in x-axis like initially, I want scales to be 1,2,3,4,5 then a ...
Dhwani Dholakia's user avatar
1 vote
1 answer
235 views

I want to make a plot with not equally spaced axis. Here is my data. group <- c("group1","group2","group3","group4","group5","group6") value <- c(520,550,13,15,30,20) df <- cbind.data.frame(...
tayu's user avatar
  • 33
0 votes
1 answer
221 views

I am creating a barplot with some values by using R and ggplot2. Creating the plot and everything works nicely, however, I have y-values that are mainly in one general value range with one or two ...
Klinring's user avatar
1 vote
0 answers
177 views

I want to plot small values with only a few runaway values, and do not want to change the axis scale, but brake it instead. As there does not seem to be a builtin support for braking an axis in ...
muffel's user avatar
  • 7,470
0 votes
0 answers
78 views

I'm plotting a geom_point() layer using ggplot. In my plot, I have one dot located very far away from the rest along the y axis. As a result, the data visualization loses granularity and displays a ...
AlGrasso's user avatar
0 votes
0 answers
13 views

I have a very big dataset (58000 rows) with which I want to plot temperature~ time(sec), (measurement was done for 16 hours) using geom line or geom point. However between two specific time points( ...
Moh Bashawat's user avatar
35 votes
4 answers
58k views

I have a faceted plot with very diverse data. So some facets have only 1 x value, but some others have 13 x values. I know there is the parameter space='free' which adjusts the width of each facet by ...
drmariod's user avatar
  • 11.9k

15 30 50 per page