In statistics, a histogram is a graphical representation, showing a visual impression of the distribution of data.
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 ...
2
votes
2answers
822 views
How to show histogram of RGB image in Matlab?
I read an image in matlab using
input = imread ('sample.jpeg');
Then I do
imhist(input);
It gives this error:
??? Error using ==> iptcheckinput
Function IMHIST expected its first input, I ...
1
vote
2answers
66 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 ...
4
votes
1answer
12k views
Plot Histogram in Python
I have two lists, x and y.
x contains the alphabet A-Z and Y contains the frequency of them in a file.
I've tried researching how to plot these values in a histogram but has had no success with ...
1
vote
1answer
3k views
Modify Legend using ggplot2 in R
I'm currently using the ggplot package to plot a histogram of normal variates with a N(0, 1) density overlay. I'm very new to this package and the code I'm using is
x = rnorm(1000)
qplot(x, geom = ...
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 ...
2
votes
2answers
681 views
Ruby Array to Histogram: How to group numbers by range?
I'm trying to group an array of integers into an hash based on where the individual values fall in a range. Basically I want to convert an array to a fixed-width histogram.
Example:
values = ...
0
votes
0answers
14 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
1answer
20 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, ...
2
votes
1answer
311 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]
...
1
vote
2answers
64 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 ...
1
vote
1answer
486 views
bar3 colour depending on zdata
When using the bar3 function, the colours of the bars depend on the column or row the data is in. Example:
data = peaks(20);
bar3(data);
view(-135,30)
How can I make it that the colour of each ...
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
5answers
1k views
Make histogram by python
Hi I'm trying to make histogram by python. And I searched the internet and find the following script part:
def histogram(L):
d = {}
for x in L:
if x in d:
d[x] += 1
...
0
votes
1answer
80 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! ...
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 ...
-2
votes
0answers
51 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 ...
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 ...
0
votes
1answer
330 views
Histograms in Python using matplotlib
I'm trying to make a histogram, and i've been doing some searches and trying to find the right code, but everything I try doesn't end up working. This is my code right now,
import matplotlib.pyplot ...
0
votes
2answers
812 views
plotting histogram using matplotlib in python
I have a file containing 2 columns like:
111, 3
122, 4
155, 3
192, 5
11, 9
123, 10
120, 23
How can I be able to write the data like ((111,122,155,192,11,123,120),(3,4,3,5,9,10,23)) .
...
2
votes
2answers
4k views
2D histogram with Python
I'm trying to plot a 2D histogram in Python using these code
from math import *
import pylab as p
import matplotlib.pyplot as plt
import numpy as np
x=part.points[:,0]
y=part.points[:,1]
...
1
vote
1answer
40 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
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 = ...
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 ...
1
vote
1answer
125 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 ...
0
votes
2answers
532 views
How to correctly generate a 3d histogram using numpy or matplotlib built in functions in python?
This is more of a general question about 3d histogram creation in python.
I have attempted to create a 3d histogram using the X and Y arrays in the following code
import matplotlib
import pylab
...
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 ...
2
votes
1answer
48 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 ...
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)
...
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 ...
0
votes
0answers
92 views
Python Pandas histogram not recognizing 'by' grouping argument
I got an error message when trying to produce histograms by grouping. Here is the code and error message.
I have the 0.9.1 Pandas version
>>> data.hist(by=np.random.randint(0, 4, 1000))
...
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, ...
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
66 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 ...
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
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){
...
-1
votes
2answers
75 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 ...
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 ...
2
votes
4answers
4k views
Normalizing histogram bins in gnuplot
I'm trying to plot a histogram whose bins are normalized by the number of elements in the bin.
I'm using the following
binwidth=5
bin(x,width)=width*floor(x/width) + binwidth/2.0
plot 'file' using ...
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
30 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 ...
0
votes
1answer
84 views
How to calculate 3D histogram in python using open CV
I want to calculate 3D histogram of my Cielab image in python. I am using openCV to calculate my histogram. I want to compare images using compareHist function of openCV, thats why I am using openCV ...
5
votes
2answers
112 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 ...





