tagged [ggplot2]
Overlaying histograms with ggplot2 in R
Overlaying histograms with ggplot2 in R I am new to R and am trying to plot 3 histograms onto the same graph. Everything worked fine, but my problem is that you don't see where 2 histograms overlap - ...
What do hjust and vjust do when making a plot using ggplot?
What do hjust and vjust do when making a plot using ggplot? Every time I make a plot using ggplot, I spend a little while trying different values for hjust and vjust in a line like to get the axis lab...
Error: package or namespace load failed for ggplot2 and for data.table
Error: package or namespace load failed for ggplot2 and for data.table I am not able to open install the ggplot2 and data.table packages. It gives me the following error (example for ggplot2) ``` > li...
- Modified
- 4 Nov at 19:58
Change bar plot colour in geom_bar with ggplot2 in r
Change bar plot colour in geom_bar with ggplot2 in r I have the following in order to bar plot the data frame. ``` c1
Any way to make plot points in scatterplot more transparent in R?
Any way to make plot points in scatterplot more transparent in R? I have a 3 column matrix; plots are made by points based on column 1 and column 2 values, but colored based on column 2 (6 different g...
Changing line colors with ggplot()
Changing line colors with ggplot() I don't use ggplot2 that much, but today I thought I'd give it a go on some graphs. But I can't figure out how to manually control colors in `geom_line()` I'm sure I...
Showing data values on stacked bar chart in ggplot2
Showing data values on stacked bar chart in ggplot2 I'd like to show data values on stacked bar chart in ggplot2. Here is my attempted code ``` Year
What does the error "arguments imply differing number of rows: x, y" mean?
What does the error "arguments imply differing number of rows: x, y" mean? I'm trying to create a plot from elements of csv file which looks like this: I tried the following code but am receiving an e...
Editing legend (text) labels in ggplot
Editing legend (text) labels in ggplot I have spent hours looking in the documentation and on StackOverflow, but no solution seems to solve my problem. When using `ggplot` I can't get the right text i...
Combine Points with lines with ggplot2
Combine Points with lines with ggplot2 I would like to plot a time series that look like this:  what I plot with: My data looks like...
Setting y axis breaks in ggplot
Setting y axis breaks in ggplot I'm having difficulty setting the breaks in my code, I've tried adding breaks=seq(0, 100, by=20) but just can't seem to get it to work right. Essentially I want the Y a...
Remove legend title in ggplot
Remove legend title in ggplot I'm trying to remove the title of a legend in `ggplot2`: ``` df
Add panel border to ggplot2
Add panel border to ggplot2 I have been asked to place a full border around my plot below:  Using `panel.border = element_rect(colou...
Help understanding how to make a bar chart using ggplot2
Help understanding how to make a bar chart using ggplot2 I'm trying to use the [bar_geom](http://had.co.nz/ggplot2/geom_bar.html) function of ggplot2, but I can't understand how to use it. I've made a...
ggplot2 two-line label with expression
ggplot2 two-line label with expression I'd like to write an axis label over two lines with an `expression()` statement. However, `plotmath` and `expression` won't allow this (e.g. subscripted text app...
Eliminating NAs from a ggplot
Eliminating NAs from a ggplot Very basic question here as I'm just starting to use R, but I'm trying to create a bar plot of factor counts in ggplot2 and when plotting, get 14 little colored blips rep...
Plotting multiple time series on the same plot using ggplot()
Plotting multiple time series on the same plot using ggplot() I am fairly new to R and am attempting to plot two time series lines simultaneously (using different colors, of course) making use of ggpl...
How do you specifically order ggplot2 x axis instead of alphabetical order?
How do you specifically order ggplot2 x axis instead of alphabetical order? I'm trying to make a `heatmap` using `ggplot2` using the `geom_tiles` function here is my code below: ``` p
Add text to ggplot
Add text to ggplot (updated) I have ggplot like this, but then the x axis Date scaled: ``` g1
Plot data in descending order as appears in data frame
Plot data in descending order as appears in data frame I've been battling to order and plot a simple dataframe as a bar chart in ggplot2. I want to plot the data as it appears, so that the values ('c...
Fixing the order of facets in ggplot
Fixing the order of facets in ggplot Data: ``` df
Add a common Legend for combined ggplots
Add a common Legend for combined ggplots I have two ggplots which I align horizontally with `grid.arrange`. I have looked through a lot of forum posts, but everything I try seem to be commands that ar...