Tagged Questions
In statistics, a histogram is a graphical representation, showing a visual impression of the distribution of data.
23
votes
3answers
23k views
Histogram using gnuplot?
I know how to create a histogram (just use "with boxes") in gnuplot if my .dat file already has properly binned data. Is there a way to take a list of numbers and have gnuplot provide a histogram ...
22
votes
11answers
7k views
Javascript library for drawing Graphs over Timelines (zoomable and selectable)
Is there a javascript library that allows for drawing histograms/graphs over timelines, allow zooming, as well as selecting regions.
Something similar to Google's Financial Data Graphs (allows for ...
19
votes
2answers
372 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. ...
14
votes
5answers
7k views
Histogram with Logarithmic Scale
I'm currently trying to generate a histogram in R on a logarithmic scale, but I haven't the clue where to start. I've looked on Google but none of the stuff I've seen really does what I want.
To ...
13
votes
5answers
7k views
python histogram one-liner
there are many ways, how to code histogram in Python.
by histogram, i mean function, counting objects in an interable, resulting in the count table (i.e. dict). e.g.:
>>> L = 'abracadabra'
...
13
votes
3answers
4k views
Python Matplotlib rectangular binning
I've got a series of (x,y) values that I want to plot a 2d histogram of using python's matplotlib. Using hexbin, I get something like this:
But I'm looking for something like this:
Example Code:
...
9
votes
6answers
3k views
MySQL: Getting data for histogram plot?
Is there a way to specify bin sizes in MySQL? Right now, I am trying the following SQL query:
select total, count(total) from faults GROUP BY total;
The data that is being generated is good enough ...
8
votes
3answers
148 views
histogram without vertical lines in Mathematica
I am trying to make an histogram without vertical lines. I'd like to have a plot which looks like a function. Like this:
The same question has been asked for R before ( histogram without vertical ...
8
votes
5answers
957 views
Histogram matching - image processing - c/c++
I have two histograms.
int Hist1[10] = {1,4,3,5,2,5,4,6,3,2};
int Hist1[10] = {1,4,3,15,12,15,4,6,3,2};
Hist1's distribution is of type multi-modal;
Hist2's distribution is of type uni-modal with ...
8
votes
3answers
2k views
How does one plot a 3D stacked histogram in R?
I want to plot stacked histograms in R; i.e. stack individual histograms in the third dimension.
thank you all for your suggestions, especially the one by Shane.
@hadley, I agree with your points, ...
8
votes
6answers
1k views
How do I generate points that match a histogram?
I am working on a simulation system. I will soon have experimental data (histograms) for the real-world distribution of values for several simulation inputs.
When the simulation runs, I would ...
7
votes
1answer
759 views
Combination Boxplot and Histogram using ggplot2
I am trying to combine a histogram and boxplot for visualizing a continuous variable. Here is the code I have so far
require(ggplot2);
require(gridExtra);
p1 = qplot(x = 1, y = mpg, data = mtcars, ...
7
votes
3answers
10k views
Fitting a density curve to a histogram in R
Is there a function in R that fits a curve to a histogram?
Let's say you had the following histogram
hist(c(rep(65, times=5), rep(25, times=5), rep(35, times=10), rep(45, times=4)))
It looks ...
6
votes
2answers
1k views
Histogram matching of two colored images in matlab
Anyone knows how to perform RGB histogram matching on two colored images?
for example this is an image to be re-mapped:
and this is a target image
Then the RGB remapped image look like this
...
5
votes
2answers
72 views
Python: Histogram with area normalized to something other than 1
Is there a way to tell matplotlib to "normalize" a histogram such that its area equals a specified value (other than 1)?
The option "normed = 0" in
n, bins, patches = plt.hist(x, 50, normed=0, ...
5
votes
3answers
107 views
Unexpected results when assigning values to an array In c
I am reading C The Programming Language Second Edition. I've come to this exercise [1-13 in Section 1.6, pg. 24 2nd ed].
Write a program to print a histogram of the lengths of words in its
...
5
votes
4answers
175 views
How to keep a dynamical histogram?
is there a known algorithm + data-structure to maintain a dynamical histogram?
Imagine I have a stream of data (x_1, w_1) , (x_2, w_2), ... where the x_t are doubles, that represent some measured ...
5
votes
6answers
185 views
Create unique colors using javascript
What is the best way to pick random colors for a bar chart / histogram such that each color is different from the other.. and possibly in contrast
The most talked about way is
...
5
votes
1answer
692 views
Matplotlib - label each bin
I'm currently using Matplotlib to create a histogram:
import matplotlib
matplotlib.use('Agg')
import matplotlib.pyplot as pyplot
...
fig = pyplot.figure()
ax = fig.add_subplot(1,1,1,)
n, bins, ...
5
votes
2answers
607 views
Multiple histograms in ggplot2
Here is a short part of my data:
dat <-structure(list(sex = structure(c(1L, 1L, 1L, 1L, 1L, 1L, 1L,
1L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L, 2L), .Label = c("male",
"female"), class = ...
5
votes
2answers
343 views
sorting images by color
I'm looking for a way to sort images as in the following screenshot:
http://www.pixolution.de/sites/LargeImages_en.html
I've looked at all the threads on this topic on stackoverflow but none of the ...
5
votes
2answers
337 views
multiple histograms on top of eachother without bins
Let's say I've got this dataframe with 2 levels. LC and HC.
Now i want to get 2 plots like below on top of eachother.
data <- data.frame(
...
5
votes
1answer
383 views
How to Plot a Pre-Binned Histogram In R
I have a pre-binned frequency table for a rather large dataset. That is, a single column vector of bins and a single column vector of counts associated with those bins. I'd like R to plot a histogram ...
5
votes
4answers
169 views
Printing class histogram programmaticly
is there any way to print top used N classes on the current java application programmaticly?
sample output: N=10
num #instances #bytes class name
--------------------------------------
1: ...
5
votes
2answers
408 views
How do I highlight an observation's bin in a histogram in R
I want to create a histogram from a number of observations (i.e. d <- c(1,2.1,3.4,4.5) ) and then highlight the bin that a particular observation falls in, such that I have an output that looks ...
5
votes
6answers
1k views
Is there any Algorithm for converting Image histograms into original image?
So we have Histograms... Is there any algorithm to generate original image from them?
4
votes
2answers
44 views
Histogram on Lattice
Since hist() of the base R does not report percentages (and the freq=FALSE) does not help either, I turned to lattice.
histogram(rnorm(10000))
Please help me with the following:
How can I get ...
4
votes
2answers
129 views
Faster way to extract histogram from an image
Im looking for a faster way to extract histogram data from an image.
Now Im using this piece of code that needs about 1200ms for a 6mpx JPEG image.
ImageReader imageReader = ...
4
votes
2answers
186 views
Getting frequency values from histogram in R
I know how to draw histograms or other frequency/percentage related tables.
But now I want to know, how can I get those frequency values in a table to use after the fact.
I have a massive dataset, ...
4
votes
1answer
348 views
Creating a 3D histogram with R
How can I create a 3D histogram with R?
For example, I have two variables to be counted for the number of times they fall in a defined two dimensional bin. So I have two variables in the X and Y ...
4
votes
1answer
208 views
FindFit with BinCounts or Histogram in Mathematica
daList={62.8347, 88.5806, 74.8825, 61.1739, 66.1062, 42.4912, 62.7023,
39.0254, 48.3332, 48.5521, 51.5432, 69.4951, 60.0677, 48.4408,
59.273, 30.0093, 94.6293, 43.904, 59.6066, ...
4
votes
3answers
116 views
advice for static template class
I have this problem (histogramming). I've a real space: [a,b] partitioned in some way ([a0=a, a1, a2, ..., b]). The partitioning may be with equal space (a1 - a0 = a2 - a1 = ...) or variables.
I need ...
4
votes
5answers
633 views
Comparing two histograms
For a small project, I need to compare one image with another. The images are smallish, varying from 25 to 100px across. I've decided to represent each image using histograms (either a 3D histogram or ...
4
votes
3answers
1k views
How to display labels above a histogram bin?
I have an array a(30,2) where the first column is a unique sample number and the second column is a value assigned to the sample. I plot a histogram of the 2nd column:
hist(a(:,2))
I have N bins ...
4
votes
3answers
1k views
How do you use hist to plot relative frequencies in R?
How do you use hist() to plot relative frequencies in R?
If I do the following, I will get a density plot, but I want a relative frequency plot:
a <- c(0,0,0,1,1,2)
hist(a, freq=FALSE)
I want ...
4
votes
3answers
220 views
Is there a more elegant replacement for this MATLAB loop?
I want to get better at vectorizing my loops in MATLAB. At the moment, I'm trying to count the occurrences of values in a list of ints. My code is similar to this:
list = [1 2 2 3 1 3 2 2 2 1 5];
...
4
votes
2answers
2k views
Histogram in Matplotlib with input file
I wish to make a Histogram in Matplotlib from an input file containing the raw data (.txt). I am facing issues in referring to the input file. I guess it should be a rather small program. Any ...
4
votes
2answers
1k views
Numpy histogram of large arrays
I have a bunch of csv datasets, about 10Gb in size each. I'd like to generate histograms from their columns. But it seems like the only way to do this in numpy is to first load the entire column into ...
4
votes
3answers
2k views
How to construct unequal width histograms with Matlab?
I would like to construct a histogram with unequal bins (intervals)..Matlab construct only histograms with equal bins as if it's a diagram..!!!
Please help me...thanks a lot!!
4
votes
2answers
949 views
Individually labeled bars for bar graphs in matplotlib / Python
I am trying to create bar graphs of letter frequency in Python. I thought the best way to accomplish this would be matplotlib, but I have been unable to decipher the documentation. Is it possible to ...
4
votes
2answers
1k views
Add a vertical line with different intercept for each panel in ggplot2
I'm using ggplot2 to create panels of histograms, and I'd like to be able to add a vertical line at the mean of each group. But geom_vline() uses the same intercept for each panel (i.e. the global ...
4
votes
2answers
2k views
Color Coherence Vector in C#
A friend and I are about to embark on creating a machine that performs some image comparison for sorting. I know about histogram comparison and am generally confident that a small grid of histograms ...
3
votes
1answer
61 views
Unhandled exception after reading histogram (created with calcHist)
I am trying to get histogram from my color (3-channel) image in OpenCV but every time I do the calcHist histogram like this :
//int histSize[3];
//float hranges[2];
//const float* ranges[3];
//int ...
3
votes
2answers
82 views
Matplotlib histogram bins selection depends on whether data is plotted “alone” or with some other data: how so?
The title has it. :)
Example:
from numpy import random
from matplotlib import pyplot as plt
data = [1 + random.randn(1000), random.randn(1000)]
bins = 10
plt.hist(data, bins, label=['first', ...
3
votes
1answer
74 views
Display the color histogram for an image
I'm searching for a function in PHP which extract the histogram from an image to an PNG file. This PNG file will be located in a different folder than the actual image and the function must handle ...
3
votes
1answer
94 views
Calculate the estimated size of the self-join operation R x R on a relatiion R, given a histogram for R
Query optimizers typically use summaries of data distributions to estimate the sizes of the intermediate tables generated during query processing. One popular such summarization scheme is a histogram, ...
3
votes
1answer
43 views
determine mean value on 0Y histogram axis
I am drawing histograms using hist command as below:
hist(plikTVDI, ylab='częstość występowania',
xlab=xetyk, col='red', main=etykieta, cex.lab=1.5)
Then I am adding tekst:
...
3
votes
2answers
175 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 ...
3
votes
1answer
282 views
Probability distribution function in Python
I know how to create an histogram in Python, but I would like that it is the probability density distribution.
Let's start with my example. I have an array d, with a size of 500000 elements. With the ...
3
votes
2answers
141 views
R: Change histogram bar colours greater than a certain value
So far, I've managed to change the colour a single bar in a histogram following the example here
test <- rnorm(100);
h <- hist(test);
b <- cut(1, h$breaks);
clr <- rep("grey", ...