Tag for questions about building histograms in Mathematica. Apart from generating the graphics, and prettifying them, this also includes methods to extract their data.
1
vote
2answers
87 views
Probability density histogram with unequal bin widths
I am confused by output of Histogram and HistogramList for probability density ("PDF") when ...
0
votes
1answer
63 views
How to obtain an approximate function for SmoothHistogram3D?
I have a random distribution of points in the $x\!-\!y$ plane. I can obtain a graphical representation of the probability distribution function using ...
3
votes
1answer
77 views
How do I display a histogram with normalized counts?
I have some data corresponding to real number distances: {200.04053, 200.232123, 156.3242,...}, and I would like to bin these values and display them as a histogram ...
2
votes
1answer
141 views
Misaligned DensityHistogram, DistributionAxes & PlotRange
data = RandomReal[NormalDistribution[0.5, 0.1], {10000, 2}];
DensityHistogram[data, PlotRange -> 1, Method -> {"DistributionAxes" -> "Histogram"}]
The ...
2
votes
1answer
52 views
How to extract the bin width from a Histogram made with an automatic binning method?
I am using the Scott binning method with Histogram and Histogram3D to plot some data. How could I find out the bin width chosen ...
5
votes
3answers
89 views
AxesLabel in Histogram3D unreadable
I'd like to modify this chart to relocate the z axis label so it's not over printing the values.
...
2
votes
0answers
128 views
Problem displaying eps exported histograms in Word 2010
I am having problems displaying histograms exported as .eps in word 2010. I don't have problems though displaying them in a specialized .eps viewer. (Postsript viewer from Rampant logic) I am writing ...
4
votes
2answers
148 views
Histogram3D using sums instead of counts
I'm trying to create a 3d histogram/ matrix plot pair. My data is in the form
{{TTR1,TBF1},{TTR2,TBF2},....}
What I would like is to modify the Histogram3D so ...
3
votes
2answers
270 views
How to rebuild original data from a histogram?
I have data in form
list of values ex. {5,7,4}
list of frequecies ex. {1,2,3}
I would like to obtain the original data from which such a histogram was generated
ex. {5,7,7,4,4,4}
2
votes
1answer
132 views
3
votes
1answer
124 views
How can I have an axis label automatically positioned below the X-axis?
I'm attempting to generate some histograms, and I'd like to automatically label the X-axis. However, Histogram[. . ., AxesLabel -> {"X", "Y"}] places the "X" ...
4
votes
1answer
108 views
Rescuing a vertically clipped histogram
I recently ran a rather time intensive calculation and plotted the results in a histogram by simply called Histogram[data]. However, because of a rather serious error on my part, I recently lost my ...
1
vote
0answers
137 views
Problems with log-log histograms
I'm using a custom function to create Log-Log Histograms of my data. It uses the CustomTicks` package (in LevelScheme, http://scidraw.nd.edu/levelscheme/) to display Log Ticks.
...
0
votes
2answers
160 views
Creating histogram?
How can i create histogram of these variables that would show the depth of sensors when temperature is 0 Degree Celsius. Time function is 0 min, 50 min, 100 min, 150 min, 200 min, and 250 min and ...
4
votes
1answer
117 views
Representative Smooth Kernel Distribution from Truncated Distribution
I am trying to produce a better distribution from a dataset that is bounded to be greater than 0. Here is an example distribution from the documentation that mimics the behavior of the actual dataset:
...