Tagged Questions
3
votes
1answer
75 views
How to create black and white transparent overlapping histograms using ggplot2?
I used ggplot2 to create two transparent overlapping histograms.
test = data.frame(condition = rep(c("a", "b"), each = 500), value = rep(-1, 1000))
test[1:500,]$value = rnorm(500)
...
1
vote
1answer
70 views
Coloring density plot in ggplot2
When I use following code to generate a density plot:
require(ggplot2)
set.seed(seed=10)
n <- 10000
s.data <- data.frame(score = rnorm(n,500,100),
gender = ...
2
votes
0answers
52 views
Density plot in ggplot [duplicate]
Suppose I have following dataset:
set.seed(seed=10)
n <- 10000
s.data <- data.frame(score = rnorm(n,500,100),
gender = ...
2
votes
0answers
56 views
Normalizing faceted histograms separately in ggplot2
My questions is similar to
Normalizing y-axis in histograms in R ggplot to proportion
but I'd like to add to it a bit.
In general, I have 6 histograms in a 2x3 facet design, and I'd like to normalize ...
5
votes
2answers
60 views
How can I get the same plot without the intermediate step of the amount aggregation?
How can I get the same plot without the intermediate compute of the aggregate column.
I have this data :
set.seed(1234)
dat <- data.frame(month = gl(3,1,20),
family= gl(5,1,20),
...
1
vote
1answer
87 views
Two data series overlayed on the same bar chart/histogram
I'm using ggplot2 and I need to display two sets of data on the same histogram and need to distinguish between them. At the moment, I'm just setting the colour of each series to be 50% opacity so that ...
0
votes
1answer
53 views
How do I change the position of bins in ggplot2 for R
The following plots a histogram with a bin whose left most point is at 0.
myplot = ggplot(df,aes(x = myvar)) +
geom_histogram(aes(y = ..density..), binwidth = .3)
I want the histogram ...
4
votes
3answers
341 views
Stacked histogram from already summarized counts using ggplot2
I would like some help coloring a ggplot2 histogram generated from already-summarized count data.
The data are something like counts of # males and # females living in a number of different areas. ...
1
vote
0answers
410 views
Overlay density and histogram plot with ggplot2 using custom bins
So I have some data - gene expression in several samples - that I want to plot as an histogram binned in a way that makes sense, and then overlaying a density curve. Something along the lines of this ...
1
vote
2answers
115 views
How to force a y axis to minimum and maximum range in R?
If you look at the graph below (y axis), you will notice that the scale is from 0 to 0.20. I have other histograms where the range is from 0 to 0.4. I want to make all of them consistent from 0 to 1 ...
0
votes
1answer
122 views
Why X-axis values of a histogram disappear when specifying the breaks?
trying to plot a raster file using ggplot2 but the x axis values disappeared. I am grateful to any help
conne <- file("C:complete.bin","rb")
sd <- readBin(conne, numeric(), size=4, ...
1
vote
2answers
192 views
how to plot a raster file as a histogram using ggplot2?
I have a raster file
and I want to plot as a histogram ,i did it using hist() as shown below. but i would like to plot using ggplot2 which plot it in a better way for publication.
conne <- ...
0
votes
2answers
221 views
Use ddply() to aggregate relative histogram counts
Related to a previous question I asked (ggplot2 how to get 2 histograms with the y value = to count of one / sum of the count of both), I tried to write a function which would take a data.frame as ...
0
votes
2answers
272 views
ggplot2 how to get 2 histograms with the y value = to count of one / sum of the count of both
I guess my question is simple (even if the title is not...) but I was not able to find any clear answer yet. I want to plot histograms of Reaction Times in a psychophysics task. I need to plot two of ...
1
vote
2answers
375 views
Histogram with “negative” logarithmic scale in R
I have a dataset with some outliers, such as the following
x <- rnorm(1000,0,20)
x <- c(x, 500, -500)
If we plot this on a linear x axis scale at this we see
histogram(x)
I worked out a ...
1
vote
1answer
132 views
ggplot() lines transparency
How to change the transparency level of lines in ggplot() diagram (i.e. histogram, line plot, etc.)?
For instance consider the code below:
data <- data.frame(a=rnorm(100), b = rnorm(100,.5,1.2))
...
0
votes
0answers
174 views
Fit a power-law to a histogram using least-squares or maximum likelihood in R [closed]
I'm analysing some data (and energy distribution) and I have these histograms (I'm plotting them in ggplot2) and want to fit them a power-law function and get the value of the gamma of the fit (the ...
2
votes
1answer
129 views
How to adjust `binwidth` in ggplot2?
This may sound a like a repeat question, but hopefully it is not. In the basic R graphics histogram function, we have a option breaks="FD", which gives a reasonable sized binsize for the histogram, ...
3
votes
1answer
653 views
SuperImpose Histogram fits in one plot ggplot
I have ~ 5 very large vectors (~ 108 MM entries) so any plot/stuff I do with them in R takes quite long time.
I am trying to visualize their distribution (histogram), and was wondering what would be ...
0
votes
1answer
108 views
altering the color of one value in a ggplot histogram
I have a simplified dataframe
library(ggplot2)
df <- data.frame(wins=c(1,1,3,1,1,2,1,2,1,1,1,3))
ggplot(df,aes(x=wins))+geom_histogram(binwidth=0.5,fill="red")
I would like to get the final ...
1
vote
2answers
215 views
R - Shading part of a ggplot2 histogram
So I have this data:
dataset = rbinom(1000, 16, 0.5)
mean = mean(dataset)
sd = sd(dataset)
data_subset = subset(dataset, dataset >= (mean - 2*sd) & dataset <= (mean + ...
1
vote
2answers
97 views
ggplot2 geom to graph the quantity of each point type (against a continuous axis)?
I'm trying to figure out how to make a particular kind of graph. It looks like the kind of thing that would be super easy to do in R or ggplot2, but I must not be finding the right keywords to ...
5
votes
1answer
221 views
ggplot2: Reading maximum bar height from plot object containing geom_histogram
Like this previous poster, I am also using geom_text to annotate plots in gglot2. And I want to position those annotations in relative coordinates (proportion of facet H & W) rather than data ...
-1
votes
1answer
230 views
histogram for data frame binned data [duplicate]
Possible Duplicate:
how to define fill colours in ggplot histogram?
I want to plot (histogram) counts of fishes per length class from a data frame which summarize this information in a ...
4
votes
1answer
116 views
stat_bin2d with fill based on success rate
I have a table with following data:
> head(sweet)
interval urgency success
1 3138 761 1
2 3210 2189 1
3 3243 1256 1
4 8776 823 1
5 ...
4
votes
2answers
260 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.
...
2
votes
1answer
88 views
stat_bin reverting to default
I am having a bit of a hard time getting my histogram to plot the correct number of bins. I would like each bin to be the values 1-5, 5-10, 10-15, etc but when I use stat_bin it reverts to the ...
3
votes
2answers
359 views
R ggplot histogram given multiple inputs
I have stumbled across a problem in R that I was hoping someone could clear up why it is happening and how to fix it. I am not well vetted in the use of R and sometimes get muddled in the way that one ...
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 ...
1
vote
1answer
1k views
R: Overlapping ggplots
I have a quick question about R. I am trying to make a layered histogram from some data I am pulling out of files but I am having a hard time getting ggplot to work with me. I keep getting this error ...
2
votes
1answer
160 views
Create a bin for anything above X value in GGPlot2 Histogram
Using ggplot2, I want to create a histogram where anything above X is grouped into the final bin. For example, if most of my distribution was between 100 and 200, and I wanted to bin by 10, I would ...
2
votes
1answer
215 views
ggplot2: barplot of fractions of single level of the factor in each bin
For example we have usual stacked bar plot:
ggplot(diamonds, aes(x=color, fill=cut))+geom_bar(position="fill")
And I want to make same plot but leave on it only one of "Cut" - types. For example ...
3
votes
1answer
811 views
R: ggplot2: Adding count labels to histogram with density overlay
I have a time-series that I'm examining for data heterogeneity, and wish to explain some important facets of this to some data analysts. I have a density histogram overlayed by a KDE plot (in order to ...
4
votes
2answers
628 views
R: saving ggplot2 plots in a list
I am writing a R code that allows users to select columns from a data and plots histograms for each of them. Hence, I am using a 'for' loop to generate the required number of plots using the ggplot2 ...
2
votes
1answer
846 views
How can I create a histogram for all variables in a data set with minimal effort in R?
Exploring a new data set: What is the easiest, quickest way to visualise many (all) variables?
Ideally, the output shows the histograms next to each other with minimal clutter and maximum ...
6
votes
1answer
386 views
How can I superimpose an arbitrary parametric distribution over a histogram using ggplot?
How can I superimpose an arbitrary parametric distribution over a histogram using ggplot?
I have made an attempt based on a Quick-R example, but I don't understand where the scaling factor comes ...
4
votes
1answer
192 views
Plotting a histogram in ggplot2 results in memory error (only 418 data points)
I'm trying to plot a histogram with 2 sets of data using ggplot2. My dataset has 418 values to plot, with 2 groups of data (so there will be 2 sets of coloured bars on my histogram). Annoyingly I ...
18
votes
2answers
678 views
How do I draw an arrow on a histogram drawn using ggplot2?
Here is dataset:
set.seed(123)
myd <- data.frame (class = rep(1:4, each = 100), yvar = rnorm(400, 50,30))
require(ggplot2)
m <- ggplot(myd, aes(x = yvar))
p <- m + ...
1
vote
1answer
388 views
R - Histogram / density plot of data in data frame
I'm sure there is an obvious and easy solution for this ... but I'm drawing a complete blank on this one: how can I create a histogram and/or density plot using ALL data points in a data set that ...
13
votes
2answers
3k views
Understanding dates and plotting a histogram with ggplot2 in R
Main Question
I'm having issues with understanding why the handling of dates, labels and breaks is not working as I would have expected in R when trying to make a histogram with ggplot2.
I'm looking ...
2
votes
1answer
228 views
Storing a histogram from ggplot2 for retrieval later
Is it possible to store the information generated from geom_histogram() in such a way that it can be retrieved at a latter stage? I want to calculated histograms of a large dataset, and to store it so ...
3
votes
1answer
1k views
Change the colour palette in histogram
I am trying to change the colours of my histogram, but not sure how to do it, that's my code:
qplot(user, count, data=count_group, geom="histogram", fill=group,
xlab = "users", ...
3
votes
1answer
813 views
How can I create a (100%) stacked histogram in R?
My dataset:
I have data in the following format (here, imported from a CSV file). You can find an example dataset as CSV here.
PAIR PREFERENCE
1 5
1 3
1 2
2 4
2 1
2 3
...
1
vote
2answers
580 views
creating a barplot with breaks and densities
I am looking to create a specific kind of barplot and am not expert in ggplot2 or R graphics. The height of each bar corresponds to the density vector below.
The x-axis breaks for each bar are ...
30
votes
3answers
3k views
Scatterplot with marginal histograms in ggplot2
Is there a way of creating scatterplots with marginal histograms just like in the sample below in ggplot2? In Matlab it is the scatterhist() function and there exist equivalents for R as well. ...
0
votes
3answers
2k views
Overlaying a normal distribution on a histogram [duplicate]
Possible Duplicate:
ggplot2: Overlay histogram with density curve
sorry for what is probably a simple question, but I have a bit of a problem.
I have created a histogram that is based on a ...
0
votes
2answers
914 views
How to vary binwidth inside ggplot?
I'am doing histogram with ggplot.
p <- ggplot(TotCalc, aes(x=x,y=100*(..count../sum(..count..)))) +
xlab(xlabel) + ylab(ylabel) +
geom_histogram(colour = "darkblue", fill = "white", ...
3
votes
2answers
1k views
How to add gaussian curve to histogram created with qplot?
I have question probably similar to Fitting a density curve to a histogram in R. Using qplot I have created 7 histograms with this command:
(qplot(V1, data=data, binwidth=10, facets=V2~.)
For ...
1
vote
1answer
3k views
Modify Legend using ggplot2 in R
I'm currently using the ggplot package to plot a histogram of normal variates with a N(0, 1) density overlay. I'm very new to this package and the code I'm using is
x = rnorm(1000)
qplot(x, geom = ...
0
votes
1answer
1k views
How to modify table and create bins for histogram representation in R
I am a bit new to R and I was experimenting with ggplot.
I have a table like this:
I would like to modify the table to set bins based on different breaks and record the frequency for each bin:
...