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

learn more… | top users | synonyms

0
votes
0answers
6 views

suggestionns abt Histogram back projection in opencv

i am doing the vehicle detection by segmenting the background or anything you may call can any one one suggest me the "histogram backprojection" method of obtaining contours.. the below program is ...
1
vote
2answers
67 views

Most efficient histogram code in python

I've seen a number of questions on making histograms in clean one-liners, but I haven't yet found anyone trying to make them as efficiently as possible. I'm currently creating a lot of tfidf vectors ...
0
votes
1answer
32 views

panel.abline of mean and panel.text of sample size on lattice histograms created in a loop

I am using a for loop to create a series of lattice histograms comparing length-frequnecy distributions from sample data and would like each histogram to display a vertical abline showing the mean of ...
1
vote
1answer
28 views

Negative numbers of bins

I have the following code that returns the values of a histogram:\ [a,b]=hist(x(:),unique(x)); Since I have negative values in x, I get for instance the value -3, and thus get an error, since the ...
1
vote
1answer
50 views

Plot histograms as lines

I want to plot several histograms of time data (1 week long) on the same plot as lines. I have time data: > dput(head(ts)) structure(c(1364421605.227, 1364375025.034, 1364376298.393, ...
4
votes
2answers
51 views

Get interest area of a Histogram (Int Array)

I have an int array full of values (0-255) and I need to extract two indexes. The indexes to be found will represent the Interesting Area I want to focus on. The values of this area are always ...
0
votes
0answers
15 views

generate bar and pie chart to a map with vb.net

I'm working a web application using Arcgis Server 10 coding with vb.net, and i'm trying to show a statistic data for example urban and rural population of the province. the statistics will be shown in ...
0
votes
0answers
16 views

Linear Discriminant Analysis on Histogram Distribution in MATLAB

I have varying distributions of a coefficient and these distributions represent a distinct class, either A or B. Is there a way for me to use LDA to train a set of data of distributions to be able to ...
0
votes
1answer
22 views

Histogram on the basis of facet counts

I am currently working on a project in which I am storing user activity logs in elasticsearch. the user field in the log is like {"user":"abc@yahoo.com"}. I have a timestamp field for each activity, ...
0
votes
3answers
21 views

Creating R Histogram with numer of occurences at multiple places

I have a set of data that looks like that (just way bigger): 2 7 3 9 5 3 2 4 7 3 3 4 2 2 and I would like to produce a histogram with bars at 2 of height (7+4+2), so 13, at 3 of height ...
0
votes
3answers
29 views

Calculating a 48-bit image histogram

I have a 48-bit (16 bits per pixel) image I've loaded with FreeImage. I'm trying to generate a histogram from this image without having to convert it to a 24-bit image. This is how I understand ...
0
votes
1answer
86 views

Skin detection from hue-saturation histogram - OpenCV Python

I'm working on a little program in python to estimate the direction of pointing gestures with 2D picture from a monocular camera and I'm using OpenCV 2.3. I know it's a bit tricky but I'm motivated! ...
-2
votes
0answers
52 views

Matlab. A matrix visualization 3d-histogram [closed]

I have a (1372x3) matrix consisting 3 vectors r(1372x1),m(1372x1) and n(1372x1). these vectors must be arranged in 3D histogram, where a sum of n controls the height. Vector n consists entirely of 1 ...
1
vote
1answer
43 views

entropy estimation using histogram of normal data vs direct formula (matlab)

Let's assume we have drawn n=10000 samples of the standard normal distribution. Now I want to calculate its entropy using histograms to calculate the probabilities. 1) calculate probabilities (for ...
1
vote
1answer
22 views

How to remove the over x line in pylab (python)?

how to remove the over line after banana so that the histogram can stick to the vertical line? import matplotlib matplotlib.use('Svg') from pylab import* label = ['apple','orange', 'banana'] number ...
0
votes
0answers
22 views

How to plot a histogram for this function [closed]

Actually this question is duplicate of a previous one but not completely. My question is as follows, AnchorID=30,SourceID=50 and their average received power is 72.75 AnchorID=50,SourceID=30. and ...
3
votes
1answer
82 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) ...
2
votes
1answer
50 views

how to add axes to 3D histogram (rgl)

I build a histogram in R using the rgl package. library(rgl) rgl.bg(col="#cccccc") x<-rnorm(2500) y<-rnorm(2500) hist3d(x, y, alpha=0.8, nclass=10, scale=30) How can I add an axis with ...
0
votes
1answer
41 views

create image histogram from 3 different histogram

I have a images 3 frames which slight variation in each. Each frame has its own histogram in RGB space. I am trying to form one histogram from the 3 histogram of the original frame. Is it possible to ...
1
vote
1answer
32 views

Matplotlib histtype='stepfilled' glitch

I'm plotting some histograms and having trouble with the histtype=stepfilled. The filling curve has obviously some wrong anchor points: Or am I missing some settings? The code is pretty straight ...
1
vote
1answer
33 views

Python: creating file to store histogram?

Do you have any advice in where I should store a histogram? cPickle? Json? Also, should I do: with open('namefile', 'wb') as histogram: .... <code for histogram> .... or should I create the ...
1
vote
2answers
66 views

Columnstacked histograms in gnuplot from multiple files

I'm trying to use gnuplot to view some profiling data; I have several files, each of the following format: file_runXX.dat: elapsed time, stage elapsed time, stage For example: 0 foo 1 step_1 1.5 ...
0
votes
0answers
19 views

Python histogam change the size

So what I'm trying to do is make a histogram. What I essentially need to do is make a fehadop the height of the point instead of all points being equal to one. and then turn it into a histogram. Also, ...
1
vote
1answer
73 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
53 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 = ...
0
votes
1answer
84 views

R histogram of a large dataset with high variance [closed]

I have a dataset that contains 1076817 records. > describe(spammers_class1$tweets_count) var n mean sd median trimmed mad min max range skew kurtosis se 1 1 1076817 443.47 ...
-1
votes
0answers
67 views

How to make a histogram of an image? [closed]

I have to make a histogram, which should calculate the greyscale of an image. But I do not really know how to do it. I just do not have a clue how to proceed, so I hope someone could help me. The ...
0
votes
1answer
60 views

compare 2 histograms with Chi-Square

i want to compare 2 Histograms, which have 2 dimensions. For this i want to use the Chi-Square-Metric. My comparator looks like this function: double Histogram::compareHistogram(Histogram *hist){ ...
2
votes
0answers
64 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 ...
-1
votes
2answers
76 views

How to add a 2nd y-axis for a density plot superimposed on a histogram in R?

I have a histogram shown below, and I have added 2 density plots on top of that. It corresponds to the 2 classes that make up the data. I want to add a 2nd y-axis on the right, but having same ...
0
votes
1answer
37 views

Determine maximum distance using Earths Movers Distance

I'm trying to determine what is the maximum distance possible that could exist between any 2 histograms using the function EMD in OpenCV. The reason is that I need to normalize (scale them on a range ...
0
votes
0answers
53 views

counting occurrences in CUDA

I have three integers, i, j, and k. Let's say i and j can be of any value from 0 to 1000, while k is between 0 and 100. I want to count the occurrences of 'i-j-k', where the integers take on values ...
-2
votes
1answer
31 views

Bayes classification in matlab histogram?

I have 2 variable pat and target.Pat variable consist of 2 row and 500 columns.Target variable 1*500. pat variable contains 500 patterns coded as 2D feature vectors x = [x1 x2]T . The second ...
5
votes
2answers
117 views

Side by Side histograms in the Same Graph in R?

This should actually be really simple but I'm having a really hard time finding a solution to this problem. I have two very simple numeric vectors in R. I am simply trying to plot a histogram with ...
0
votes
1answer
82 views

Plot a histogram in MatLab

I have one vector(newdata) consisting of 4100 lines and one column. To be exact, those elements are the counts of a spectrum. What I want is to reproduce the spectrum using matlab. That's why I ...
0
votes
1answer
72 views

Python 2d-histogram success rate per bin

I have data in arrays x, y and w where 'x' and 'y' indicate position and 'w' is a weight of either 1 or 0 indicating success or failure. I'm trying to create a 2d histogram where each bin of the ...
0
votes
1answer
40 views

How to Store Histogram Values using SparseMat on OpenCV

Calculating and storing the dense histogram matrix for my image processing operations is inefficient. ( there is no many differences on the image's color ) For the sake of efficiency, I want to use a ...
0
votes
0answers
55 views

Adding Gamma noise to an image without using imnoise function in matlab?

I have added 6 different type of noise to an image without using imnoise but still there is one type that i couldn't find anywhere, The Gamma noise!!! how could i add Gamma noise to an image without ...
5
votes
2answers
61 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), ...
0
votes
1answer
50 views

solved Changing values on x and y axis on a histogram

Update 2013/04/23 13:52 solved with pylab.bar() i want to plot a histogram, how many scrabble words with 2, 3, 4, 5, 6 or 7 chars are found in a dictionary over x trials with a random hand. The ...
1
vote
2answers
100 views

How to use histeq function on color Image?

I have a color image. I need to apply Histogram equalization in that. If I use it on the following code im = imread('E:\S1\New\Image1.png'); Test = histeq(im); I get the following error Function ...
2
votes
1answer
51 views

Histogram with base 2 logarithmic y-scale in matplotlib?

Is there any way of doing this? The hist command doesn't seem to recognise it when I try and specify base or basey.
0
votes
1answer
51 views

how to plot a histogram in matlab?

1.0000 165.7711 2.0000 158.0094 2.0000 153.5254 3.0000 148.9905 1.0000 160.9327 3.0000 155.7330 3.0000 150.7684 3.0000 156.2953 3.0000 162.1719 3.0000 186.5529 As you can see the 1st ...
1
vote
1answer
83 views

Histogram with marginal boxplot in R

How make matching X-axis in histogram with marginal boxplot? data <- rnorm(1000) nf <- layout(mat = matrix(c(1,2),2,1, byrow=TRUE), height = c(1,3)) layout.show(nf) par(mar=c(5.1, 4.1, 1.1, ...
0
votes
0answers
27 views

Some texts cannot be fully displayed while drawing histograms [duplicate]

I use python to draw histogram fetching data from file 'data.txt' using the following code: #!/usr/bin/env python from pylab import * pos = [] val = [] name = [] fd = open('data.txt') i = 0 for line ...
3
votes
2answers
64 views

Creating a curve to fit x-y data where X is categorical

I've got a dataset of diving behavior from tagged animals, and I'm struggling to fit a curve to the data, I think mainly because the X variable in this case is categorical, and not continuous data. ...
1
vote
2answers
35 views

Transferring categorical means to a new table

I'm fairly new to R, but I've tackled much larger challenges than my current problem, which makes it particularly frustrating. I searched the forums and found some related topics, but none would do ...
0
votes
2answers
47 views

finding mode from histogram

i have this function to print the histogram, I suppose to use this function calculate mode as well, I understand that to find mode you need to compare number of occurrences of each score, but I can't ...
0
votes
3answers
36 views

histogram went in to infinite loop

Hi I have this code here int calMode(RECORD list[], int count) { int tempMode = 1; int i = 1, j, k; int current = 0; while ( i <= count) { k = 1; if ...
-2
votes
1answer
33 views

writing function to output a histogram of scores

#include <stdio.h> #include <stdlib.h> #include <string.h> #define FILE_NAME 20 #define LIST_SIZE 50 typedef struct { char *name; int score; ...

1 2 3 4 5 17