In statistics, a histogram is a graphical representation, showing a visual impression of the distribution of data.
1
vote
1answer
124 views
Histogram of 3D-orientations in python/scipy
I have a dataset containing a large amount of (weighted) orientations. I want to make a nice representation to test/visualize whether there are clusters of orientation in certain directions.
First I ...
2
votes
2answers
193 views
Can't add a probability-curve on the histogram
I'm trying do display multiple histograms with one plot with the lattice-package.
That's my code so far:
histogram(~ X1 + X2 + X3 + X4 + X5 + X6 + X7 + X8 + X9 + X10, data=mydata,
type = ...
5
votes
1answer
499 views
Finding the local maxima/peaks and minima/valleys of histograms
Ok, so I have a histogram (represented by an array of ints), and I'm looking for the best way to find local maxima and minima. Each histogram should have 3 peaks, one of them (the first one) probably ...
0
votes
0answers
164 views
How to access and change pixel values by using histogram bins on opencv?
Here my code works fine. But I dunno how to attack pixel value. I googled and spend lot of time. But I could not find examples. Help me ?
int hdims = 440;
float ary[] ={0,255};
float* ...
0
votes
0answers
84 views
Full range of values on x-axis - matlab
I'm trying to check the full range of values on the x-axis of a histogram, especially while I expected the full range to be [0, 255], when I used the following command for the histogram [h, bins] = ...
0
votes
1answer
101 views
Error in using “histc” - matlab
I already have a histogram, and would like to use histc instead of hist as the later gives me the center values of the bins.
When I run the following command:
>> [h, bins] = histc(H)
I get ...
0
votes
1answer
73 views
Full range of values - matlab
I have got the following results after using [h, bins] = hist(H) in matlab:
h =
221 20 6 4 1 1 2 0 0 1
bins =
Columns 1 through 7
8.2500 24.7500 ...
0
votes
1answer
379 views
Understanding Histogram in Matlab
I got the following results after applying:[h,bins]=hist(data), such that, the data will contain the LBP (Local Binary Pattern) values.
h =
221 20 6 4 1 1 2 0 0 ...
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 ...
1
vote
1answer
146 views
Using histogram equalization for 3 regions in histogram
I'm trying to develop an application that will stretching the histogram for each region..
In one picture, the histogram will be divided into 3 region which are dark, mid and bright region.
the range ...
1
vote
1answer
135 views
histogram does not show densities
easy question maybe. googled a lot now. tried different functions and several different arguments. but the histogram
hist(estimator, probability=T, br=5)
ist not showing densities on the y-axis no ...
1
vote
0answers
154 views
how to access histogram value in opencv
I am new in opencv and using opencv c++ api.
cvGetMinMaxHistValue gets CvHistogram type .hovewer in my case I used MatND type in my histogram hist value.
Also I have another quistion. I have a almost ...
0
votes
0answers
146 views
How to normalize y-axis of the key histogram using Heatmap.2
I am using heatmap.2to visualize data. With the help of the key attribute I am printing a smaller histogram of the visualized values. The y-axis shows the absolute number of occurrences of the ...
-1
votes
2answers
562 views
compare two images by histogram and plotting in one figure [closed]
I want to compare two brain image using histogram an plot them or make two graph in one figure. How can i do that? I can make two histogram in two different figure but can not plot them in one as i am ...
0
votes
1answer
56 views
How do i make a Histogram spanning multiple files?
i want to make a histogram spanning multiple files in a Folder.
Example:
File 1:
Alpha
Beta
Ceta
Delta
File 2:
Delta
Ceta
Alpha
File 3:
Beta
Delta
I know that i can create a ...
2
votes
2answers
349 views
matplotlib stepfilled hist in y-log scale don't show correctly
I have a problem displaying histograms in matplotlib when both options histtype='stepfilled' and log=True are used. I had this problem in matplotlib version 1.1.0 and found that this is still present ...
3
votes
1answer
386 views
How to Generate Histogram Chart
I have an website where people share photographs . I am generating Photo Histogram value.. I want to design the histogram chart using the value of RGB.
How I can develop chart for histogram?
I am ...
5
votes
2answers
401 views
Matlab: Colour grade a Constellation Diagram
I am using Matlab. I have a large column vector consisting of complex values. e.g.
data=[
-0.4447 + 0.6263i
0.3114 + 0.8654i
0.7201 + 0.6808i
0.7566 + 0.8177i
-0.7532 ...
1
vote
1answer
87 views
GNUPlot select rows in Histogramm
I have a Data file which looks like the one below. Now, i wanted to make a histogramm chart using column 9, column 10 as errorbars. That works out pretty good. Bubt is there an option only to plot ...
0
votes
2answers
830 views
Relative Frequency Histograms and Probability Density Functions
The function called DicePlot simulates rolling 10 dice 5000 times.
The function calculates the sum of values of the 10 dice of each roll, which will be a 1 ⇥ 5000 vector, and plot relative frequency ...
3
votes
1answer
298 views
matplotlib polar 2d histogram
I am trying to plot some histogrammed data on a polar axis but it wont seem to work properly. An example is below, I use the custom projection found How to make the angles in a matplotlib polar plot ...
1
vote
2answers
907 views
add horizontal line histogram gnuplot
I would like to add a horizontal line in my histogram in gnuplot, is that possible?
My histogram has on the x axis: alea1 alea 2 alea3 nalea1 nalea 2 nalea 3
and the y axis goes from 0 to 25.
At ...
-1
votes
1answer
688 views
Matlab - [h,bins]=hist(data)
I have the histogram shown below:
In order to get the image data, I used this matlab command: [h,bins]=hist(data)
The output that I got was as follows:
h =
221 20 6 4 1 1 ...
0
votes
1answer
192 views
How to create a histogram for my dice function?
I created a dice function but i don't know how to create a histogram for it. Each bin in the histogram should represent a possible value of for the sum of the dice. For example, for NumDice = 1, the ...
0
votes
1answer
1k views
How to plot a probability density function on a histogram?
My function called DicePlot, simulates rolling 10 dice 5000 times. In the function, it calculates the sum of values of the 10 dice of each roll, which will be a 1 × 5000 vector, and plot relative ...
0
votes
1answer
357 views
Histogram equalization implementation [closed]
All resources that I have found a very different and I am not sure what I have to do.
Now I already got my histogram which was pretty straight forward, I also got my cumulative histogram
I don't ...
1
vote
1answer
85 views
Applying functions from histograms - in R
I have a very basic grasp of stats, and a very basic grasp of R so please bear with me.
I have survey data which shows the weekly expenditure of a number of respondents. I have put this into a ...
1
vote
3answers
177 views
Finding the belonging value of given point on a grid of 3D histogram?
I use 2D dataset like below,
37.0235000000000 18.4548000000000
28.4454000000000 15.7814000000000
34.6958000000000 20.9239000000000
26.0374000000000 17.1070000000000
27.1619000000000 ...
0
votes
1answer
256 views
Levy Flight Distribution Histogram Matlab
I have been looking around for a while on fitting Levy Distributions to a histogram to no avail. I am hoping to test out how a Levy Flight distribution would look on the data regardless of whether it ...
1
vote
1answer
48 views
How to change font for all subsequent plots in R?
I know how to specify font for a concrete plot, but is there a way to specify it once for all subsequent plots, histograms etc?
-1
votes
2answers
70 views
C Histogram wrong numbers
hi i have this function
int printofarray(int *j,double *n)
{
int x,k;
k=*j;
if(n==NULL) {
printf("array was not created\n");
return 1;}
for(x=0;x<k;x++){
printf("%.2lf\n",*(n+x));}
return 0;
}
...
1
vote
1answer
88 views
Histogram and Distance methode
Can you explain that a histogram can find the degree of similarity in the image? for example, the euclidean distance.
4
votes
1answer
165 views
Issues with entire column being zero in gnuplot histogram
I'm using gnuplot to create a stacked histogram. Today, for the first time, all data points in one of the columns are zero. This creates a problem for gnuplot, as it now reports:
All points in ...
0
votes
1answer
1k views
Histogram Chart
How to create a histogram plot using
System.Windows.Forms.DataVisualization.Charting assembly and Chart object?
My problem is that I am creating a histogram with a fixed number of bins.
Each bin has ...
1
vote
1answer
134 views
Adding a curve to a histogram?
I'd like to add a curve with it's x and y coordinates already defined to a histogram. Consider the histogram below:
set.seed(38593)
expRandom <- rexp(10000)
x <- seq(from = 0.05, to = 10, by = ...
0
votes
1answer
231 views
How can I find the value of the histogram?
I use matlab GUI. This is my code:
data = guidata(gcbo);
for i = 1:5
citra3{i} = imread(['D:\,,TA,,\Skripsi Saya\Minggu, 6 Mei 2012\Tugas_Akhir1\Pelatihan\temulawak\' num2str(i) '.jpg']);
...
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
150 views
superpose a histogram and an xyplot
I'd like to superpose a histogram and an xyplot representing the cumulative distribution function using r's lattice package.
I've tried to accomplish this with custom panel functions, but can't seem ...
0
votes
2answers
2k views
Matlab - Local Histogram Equalization
first of all I'm new at matlab, so if my question is easy sorry for that. And deeply searched on internet but can't find an answer.
I'm trying to do local histogram equalization. I did global ...
1
vote
0answers
373 views
OpenCV HOG data layout?
I'm working with OpenCV's CPU version of Histogram of Oriented Gradients (HOG). I'm using a 32x32 image with 4x4 cells, 4x4 blocks, no overlap among blocks, and 15 orientation bins. OpenCV's ...
1
vote
1answer
440 views
Cumulative histogram with percentage on the Y axis
I wish to plot in R project a cumulative histogram where on the Y axes is reported the percentage instead of the frequency
x <- c(rnorm(100), rnorm(50, mean=2,sd=.5))
h <- hist(x, plot=FALSE, ...
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
votes
1answer
108 views
Analyzing a histogram [closed]
I have a histogram with the horizontal values ranging from (0-255), and the vertical values ranging from (0-200), which represents the time of occurrence of value in the horizontal axis. Sinze I have ...
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 ...
4
votes
1answer
295 views
Matlab Histogram of randomly spread data
I am a newbie to matlab and I already search a whole bunch of different sites but I didn't quite find a solution (at least an understandable one).
I have a matrix 290x233 with double values ranging ...
0
votes
1answer
195 views
Displaying bins correctly with pyplot
Probably a simple question with a simple fix, but I'm sorta confused as to how binning actually works. I want to plot a fairly simple histogram. The x-axis should only have two values, 0 and 1, and ...
0
votes
1answer
140 views
input data to create histogram in Quickdraw
I am stuck on a question. If i have a set of data in a list (say number of students and their corresponding grade) How would I code that to create a histogram in quickdraw?
1
vote
0answers
32 views
How to group random numbers in Matalb
If I run the code rand(4,4) then that will give me a 4x4 matrix with random numbers between 0 and 1. How do I then get Matlab to group these data into groups like 0 - 0.09, 0.1 - 0.19, 0.2, 0.29, etc, ...
4
votes
3answers
255 views
Is it safe to do histogram comparison in this case?
As I don't know the limit of histogram comparison ,I decided to ask the wonderful community.
I have some images and I want to group them according to its similarity.every image has a unique colored ...
0
votes
1answer
90 views
Merge dataframes of different length at unique values (or count number occourrences) in R?
In have carried out three experiments, each rusluting in a list of numbers.
data1 = c(1,1,1,2,2)
data2 = c(2,2,3,3,3,4)
data3 = c(1,1,1,4,4,4,4,4,4, 5, 6)
Now I want to count the occurences of each ...

