0
votes
1answer
32 views
Plotting Histogram: How can I do it from scratch using data stored in a database?
I have some data stored in a database like this:
TableName: faults
Table:
+------------+--------------+
| fault_type | total |
+------------+--------------+
| 1 | …
3
votes
2answers
29 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 gener …
0
votes
6answers
100 views
Generate random number histogram using java
Histogram
--------------------------------------------------------
1 ****(4)
2 ******(6)
3 ***********(11)
4 *****************(17)
5 **************************(26)
6 * …
0
votes
3answers
66 views
How to plot a realtime graph (histogram) using data obtained in a text file
I have a continuously generated data (text file) generated by a program on the server. I want to plot the data as a real-time graph just like powergrid does. This was my approach: …
1
vote
2answers
77 views
Howto bin series of float values into histogram in Python?
I have set of value in float (always less than 0). Which I want to bin into histogram,
i,e. each bar in histogram contain range of value [0,0.150)
The data I have looks like this: …
3
votes
2answers
745 views
Color Coherence Vector in C#
A friend and I are about to embark on creating a machine that performs some image comparison for sorting. I know about histogram comparison and am generally confident that a small …
1
vote
2answers
35 views
What libraries are available for Histogram Equalization of an Image?
I am having a hard time finding a library that will preform Histogram equalization of an Image.
2
votes
1answer
123 views
Example of a histogram using wxWidgets
Does anyone have sample wxWidgets code to display a histogram? wxMathPlot seems to be working great for my other plotting needs, but now I have a requirement for a histogram.
No …
1
vote
1answer
92 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 …
1
vote
1answer
103 views
Rose diagrams in Google Chart
I searched around for ways to make rose diagrams (circular histograms) in Google Chart. The API has only radar diagrams, so it seems not technically possible (am I correct?). This …
5
votes
6answers
400 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 simulati …
2
votes
1answer
277 views
Am I using histc wrong, or is this MATLAB’s fault?
Ok, here's some code in MATLAB:
data = [1 1.5 2 3 4 4.5 5 6 7 7 7 0 0 0];
histc(data, [1:1:5])
histc(data, [1:1:5, inf])
histc(data, [-inf, 1:1:5])
which outputs the following: …
2
votes
3answers
376 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 …
1
vote
2answers
40 views
Whats the best way to INSERT (500-700) words into an MySQL database, for the purpose of a dictionary/histogram
I have to create a histogram/dictionary of all words found in parsing an html file. This includes a dictionary of all words found, and a histogram of their frequency.
I cant think …
0
votes
2answers
183 views
How can I generate a complete histogram with numpy?
I have a very long list in a numpy.array. I want to generate a histogram for it. However, Numpy's built in histogram requires a pre-defined number of bins. What's the best way t …
