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

learn more… | top users | synonyms

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 <- ...
1
vote
2answers
270 views

matlab: 2D line plot horizontal lines

This is actually very basic and I've done it before (a long tme ago) but I can't find it now; I have a vector of data points that I want to plot with a line plot; however I want the lines to be ...
-1
votes
2answers
554 views

Matlab Histogram

I have plotted a histogram (say P(r) for some randon numbers) in Matlab . How can I now get the value of P(r) corresponding to a given value of r? I mean I need the bar height corresponding to a given ...
1
vote
1answer
165 views

how to rescale the Y axis (frequency) of a histogram in R?

I have this raster file and I want to rescale the y axis (frequency) to [0,1](by dividing the frequency by the sum of all frequencies). conne <- file("C:\\fined.bin","rb") sd<- readBin(conne, ...
1
vote
2answers
602 views

Histogram of two variables in R

I have two variables that I want to compare in a histogram like the one below. For each bin of the histogram the frequency of both variables is shown what makes it easy to compare them.
-4
votes
1answer
359 views

Stacked Histograms in R [closed]

![Y Axis: Frequency, X axis: Ratio][1] http://i.stack.imgur.com/Xmg3i.png Can anyone help me with a suitable syntax to create this kind of a histogram in R? The input data will be the Ratio ...
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 ...
6
votes
4answers
185 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 ...
1
vote
1answer
108 views

How to get histogram data in measuring the performance

I am trying to measure the performance of our service by putting the data in a HashMap like- X number of calls came back in Y ms. Below is my code which is very simple. It will set the timer before ...
0
votes
1answer
96 views

How to read a histogram [closed]

I have used the following code to plot a histogram of energy values: >>I=imread('23X41.jpg'); >> I2=rgb2gray(I); >> fun = @(x) sum(x(:).^2)/sum(x(:)).^2; >> en= nlfilter(I2,[4 ...
0
votes
0answers
28 views

histogram compression hash

I have written some histogram hash code,and I would like to know if the project is worth pursuing, and if so, what would be the next thing to do. Project details are here: ...
1
vote
1answer
264 views

Comparing pictures using Android - OpenCV

I want to compare two pictures similarity Code: Mat mat1=Highgui.imread("/mnt/sdcard/91.png"); Mat mat2=Highgui.imread("/mnt/sdcard/92.png"); double distance = Imgproc.compareHist(mat1, mat2, ...
0
votes
2answers
197 views

histogram of a dicom image in matlab

I'm trying to plot a histogram in matlab of a dicom image. This is a medical image format, and the colormap is not the standard [0 255] gray levels. so the imhist is not working for me. any ...
2
votes
1answer
270 views

Pandas Histogram - y axis in time

I have a DataFrame that is indexed with DateTime and on the histogram it shows up with counts. Each count is 20 secs. How can I change the y axis to display mins, hours, or days, instead of counts? ...
0
votes
0answers
81 views

making a diagonal marginal histogram in matlab?

I'm trying to make a diagonal marginal histogram. I have a scatter plot of (x,y) pairs and I'm comparing two conditions, so I'd like a histogram straddling the unity line (the line with slope 1 that ...
1
vote
1answer
66 views

Oracle histogram of data growth for a tablespace

Is it possible to generate a histogram of the data growth for a specific tablespace within an Oracle instance? What I mean specifically is a query like this: select * from internal_growth_report ...
1
vote
1answer
101 views

How to draw a histogram with ncurses?

I have a code that reads from input, counts letters and draws a histogram as ASCII art. I would like to do the same but with ncurses. How to do it? #include <stdio.h> int main(void) { int c, ...
2
votes
1answer
324 views

Plot histogram of Cauchy distribution in R

I'm trying to plot an histogram of the Cauchy distribution in R using the following code: X = rcauchy(10^5) hist(X) and no matter what options I try in the hist() function, I can never see more ...
1
vote
1answer
301 views

Octave: Creating Two Histograms with Color Blending

I am creating one histogram on top of another in Octave. hold on; hist(normalData(:, column), 10, 1, "facecolor", "g"); hist(anomalousData(:, column), 10, 1, "facecolor", "r"); hold ...
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
1answer
468 views

How to generate histogram graph from image in android

I want to generate a histogram from an image in Android. I did find few example in java, but I haven't had any success porting that. The following is the code that I used - currently I am getting the ...
1
vote
2answers
378 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 ...
0
votes
2answers
161 views

MATLAB CODE to Cplusplus (with OPENCV)

Could someone help me in traslating this command into Cplusplus (OpenCV)? [h t] = hist(img(roi_mask>0),2048); thank you in advance!
0
votes
3answers
149 views

Histogram with curve in R

I need a histogram for my data, but could not find one with a curve. Can anyone please suggest a histogram showing frequencies (not densitities) with a curve for the data below? Fancy ones are ...
0
votes
0answers
197 views

histogram equalization for each regions in an image

i need some help here.. how to create this application using matlab.. image enhancement using adaptive contrast enhancement.. this is the proposed method that i will follow.. The proposed method ...
3
votes
2answers
127 views

How to edit an existing histogram (or any chart)?

I'm working through an R tutorial. Currently I'm making histograms. As the tutorial progresses it asks for changes to the already constructed histograms - add an xlab, add main etc etc. That's fine ...
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)) ...
-2
votes
1answer
69 views

Visualizing of frequency of integer data in R [closed]

When I try to visualize my integer data with histogram(mydata,breaks=c(0,n)), R usually doesnt care about how many breaks (usually 1 bar for each sample) do I use and it plots n-1 bars (first two bars ...
2
votes
2answers
91 views

How to separate the two leftmost bins of a histogram in R

Suppose I need to plot a dataset like below: set.seed(1) dataset <- sample(1:7, 1000, replace=T) hist(dataset) As you can see in the plot below, the two leftmost bins do not have any space ...
0
votes
1answer
367 views

get histogram data from Mat , opencv android

i am working on an android project using opencv , i am creating a histogram for a black and white image (1-0 values on image file) . i am following some tutorials i found on internet on how to create ...
0
votes
1answer
73 views

histogram$breaks works for data, histogram$mids gives error

I'm wondering if this is a bug. I have the following piece of code: h2 <- hist(c(rep(65, times=5), rep(25, times=5), rep(35, times=10), rep(45, times=4))) model2 = nls(formula = log(counts[1:5]) ...
0
votes
0answers
47 views

How plot a histogram in python using matplotlib [duplicate]

Possible Duplicate: Matplotlib - label each bin I can't fully understand how it works... also, there are hist and bar - bar is more clear for me, but... how can I plot histogram, where one ...
0
votes
0answers
52 views

Simple Image Auto Level Actionscript

I have searching for a simple auto level for Actionscript, and found good library such as Anttikupila, Clevr, and popforge. But no one of it could be implemented in my project. I dunno if it just me ...
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 ...
0
votes
1answer
211 views

fit a function to a histogram created with frequency in gnuplot

Intro In gnuplot there's a solution to create histogram from file named hist.dat what likes 1 2 2 2 3 by using commands binwidth=1 set boxwidth binwidth bin(x,width)=width*floor(x/width) + ...
0
votes
0answers
198 views

Adaptive contrast enhancement

i need some help here.. how to create this application using matlab.. image enhancement using adaptive contrast enhancement.. this is the proposed method that i will follow.. The proposed method ...
2
votes
1answer
168 views

How can I plot a histogram in pandas using nominal values?

Given: ser = Series(['one', 'two', 'three', 'two', 'two']) How do I plot a basic histogram of these values? Here is an ASCII version of what I'd want to see in matplotlib: X X X X ...
2
votes
1answer
212 views

Average of histogram values OpenCV

I am kinda new to Open CV. I am using CalcHist() to calculate the Histogram of an image gray scale image. I now want to calculate the average of the histogram values. Can you please tell me how I can ...
2
votes
5answers
199 views

Looking for an algorithm/class for counting IP addresses (histogram)

I need a simple class to count the distribution (histogram) of IP addresses from a network monitoring system. There might be anywhere from 1 to 1010 packets, with anywhere from 1 to 232 addresses (or ...
1
vote
0answers
85 views

how to update a histogram in tkinter

I have a histogram that I want to update as I move a Scale to scroll through a csv file. The Each line in the cvs file is 2 peaks and I want the histogram log the height of each peak and update ...
2
votes
1answer
131 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, ...
0
votes
0answers
147 views

OpenCV (Emgu) - Analysing a histogram

Given a histogram, what tools are available for analysing the data? What I'd like to do is find the major peaks in the data. I could simply find all low-high-low patterns but I'd expect OCV to ...
1
vote
1answer
279 views

histogram matching in Python

I am trying to do histogram matching of simulated data to observed precipitation data. The below shows a simple simulated case. I got the CDF of both the simulated and observed data and got stuck ...
2
votes
0answers
171 views

how to plot multiple histograms on the same graph from multiple DNA distance files?

I have 100 fasta files and I would like to plot overlapping histograms of genetic distance matrix to see how much overlap there is between bootstrap replicates of DNA data? I have figured out how to ...
1
vote
1answer
160 views

Align x-axis to plot for consistent use with grid

I'm trying to build an histogram using data available from here. I'm using using the CSV version of this database to display the number of exoplantes discovered per year. A simple script would be ...
3
votes
2answers
72 views

Is there a correct way of taking a histogram of ratios?

My problem is as follows; I have two vectors u and v. I have computed a table of cross-ratios like so: [ u1/v1, u1/v2, u1/v3, u1/v4, ... ] [ u2/v1, u2/v2, u1/v3, u2/v4, ... ] [ u3/v1, u3/v2, u1/v3, ...
2
votes
1answer
304 views

2D and 3D Scatter Histograms from arrays in Python

have you any idea, how I can bin 3 arrays to a histogram. My arrays look like Temperature = [4, 3, 1, 4, 6, 7, 8, 3, 1] Radius = [0, 2, 3, 4, 0, 1, 2, 10, 7] ...
4
votes
4answers
603 views

Highcharts: add different colors to legend in one series histogram

I have sample code for question here: http://jsfiddle.net/pzamora/ztxPr/1/ I have different colors in my series, however I need them to appear in the legend series: [{ name: 'V Genes', data: ...
-3
votes
2answers
346 views

I want to draw a histogram in java but i didn't know how? [closed]

I want to draw a simple histogram in java for a simple statistical.. some thing like this http://www.itjobswatch.co.uk/charts/salary-histogram.aspx?s=java+software+engineer&l=uk But i didn't ...
0
votes
0answers
100 views

how to count elements in a 2D array matching min and max in javascript for calculating histogram

I have a 2D array DATA in javascript and want to calculate a histogram. I have the bins already in place as a 1D array my_bins. Is there an easy way to calculate, for each bin in my_bins, how many ...

1 2 3 4 5 17