In statistics, a histogram is a graphical representation, showing a visual impression of the distribution of data.

learn more… | top users | synonyms

65
votes
5answers
60k 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 ...
31
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. ...
29
votes
5answers
41k views

How to plot two histograms together in R?

I am using R and I have two data frames: carrots and cucumbers. Each data frame has a single numeric column which lists the length of all measured carrots (total: 100k carrots) and cucumbers (total: ...
28
votes
13answers
16k 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 ...
25
votes
5answers
18k 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 ...
23
votes
7answers
24k 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' ...
20
votes
4answers
36k 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 ...
20
votes
8answers
7k 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 ...
18
votes
2answers
719 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 + ...
16
votes
1answer
8k 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, ...
16
votes
5answers
10k 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: ...
14
votes
2answers
4k 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 ...
13
votes
1answer
2k 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, xlab ...
11
votes
5answers
10k 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 ...
11
votes
2answers
4k 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, ...
11
votes
2answers
2k views

Detect the two highest Peaks from Histogram

I was trying to understand on how to detect the two peaks from the histogram. There can be multiple but I need to pick the two highest. Basically what I need to to is that although I will have these ...
11
votes
2answers
6k 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 ...
10
votes
1answer
349 views

Drawing Histogram needs more accuracy in iPhone

I am working in an app in which I need to draw Histogram of any inputed image. I can draw Histogram successfully but its not so sharp as its in PREVIEW in Mac OS. As code is too large ,I have ...
9
votes
3answers
9k views

searching for fast/efficient histogram algorithm

I don't do much coding outside of Matlab, but I have a need to export my Matlab code to another language, most likely C. My Matlab code includes a histogram function, histc(), that places my input ...
9
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 ...
9
votes
2answers
5k 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, ...
9
votes
4answers
18k views

Fixing the Radial Axis on MATLAB Polar Plots

I'm using polar plots (POLAR(THETA,RHO)) in MATLAB. Is there an easy way to fix the range for the radial axis to say, 1.5? I'm looking for something analogous to the xlim, ylim commands for ...
8
votes
5answers
2k views

in-terminal (ASCII) histograms tool

does anybody know of any cmd tools that can plot a histogram in the terminal in ASCII or text format? Ideally the program would work like this: %>histogram -from 0.0 -to 100.0 -bins 5 file.data ...
8
votes
6answers
1k 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 ...
8
votes
2answers
2k 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 ...
8
votes
3answers
350 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
1k 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 ...
7
votes
2answers
3k views

GNUPLOT Each Histogram Bar with different color

I want to visualize the amount of different colors of a bitmap file. My Datasheet looks like: 1 163073164 4 185122087 3 255242000 8 255255255 3 000162232 1 181230029 1 127127127 1 136000021 3 ...
7
votes
4answers
718 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 ...
7
votes
2answers
5k views

How to label histogram bars with data values or percents in R

I'd like to label each bar of a histogram with either the number of counts in that bin or the percent of total counts that are in that bin. I'm sure there must be a way to do this, but I haven't been ...
7
votes
1answer
4k views

Drawing Histogram in OpenCV-Python

I was just trying to draw histogram using new OpenCV Python interface ( cv2 ). Below is the code i tried: import cv2 import numpy as np import time img = cv2.imread('zzz.jpg') h = ...
7
votes
2answers
949 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 ...
6
votes
2answers
1k 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( ...
6
votes
3answers
5k views

How to generate a frequency table in R

I'm new with R. I need to generate a simple Frequency Table (as in books) with cumulative frequency and relative frecuency. So I want to generate from some simple data like > x [1] 17 17 17 17 ...
6
votes
2answers
2k 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 ...
6
votes
2answers
5k views

Plot two histograms at the same time with matplotlib

I created a histogram plot using data from a file and no problem. Now I wanted to superpose data from another file in the same histogram, so I do something like n,bins,patchs = ax.hist(mydata1,100) ...
6
votes
3answers
8k 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 ...
6
votes
2answers
2k 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 ...
6
votes
2answers
624 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 ...
6
votes
1answer
422 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 ...
6
votes
2answers
3k 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 = ...
6
votes
4answers
195 views

Understanding 'gslider' function to make interactive plots

I am trying to create an interactive histogram in R whose bin width can be adjusted either by moving a slider or entering a value in the text box. In addition to this, I would also like to provide the ...
6
votes
2answers
2k views

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", ...
6
votes
2answers
3k views

How can I plot a histogram of a long-tailed data using R?

I have data that is mostly centered in a small range (1-10) but there is a significant number of points (say, 10%) which are in (10-1000). I would like to plot a histogram for this data that will ...
6
votes
1answer
976 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 ...
6
votes
2answers
2k views

How to create a histogram using MySQL

I am trying to create a histogram data using following query: SELECT FLOOR(Max_Irrad/10) AS bucket, COUNT(*) AS COUNT FROM marctest.test_summarynimish where Lcu_name='Allegro' and ...
6
votes
4answers
421 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
6answers
2k 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?
5
votes
2answers
3k views

iOS GLSL. Is There A Way To Create An Image Histogram Using a GLSL Shader?

Elsewhere on StackOverflow a question was asked regarding a depthbuffer histogram - Create depth buffer histogram texture with GLSL. I am writing an iOS image-processing app and am intrigued by this ...
5
votes
2answers
6k views

How does numpy.histogram() work?

While reading up on numpy, I encountered the function numpy.histogram(). What is it for and how does it work? In the docs they mention bins: What are they? Some googling led me to the definition of ...

1 2 3 4 5 18