Mathematica 9 is now available
THIS IS DOCUMENTATION FOR AN OBSOLETE PRODUCT.
SEE THE DOCUMENTATION CENTER FOR THE LATEST INFORMATION.
Mathematica > Visualization and Graphics > Data Visualization >

Histogram3D

Histogram3D[{{x1, y1}, {x2, y2}, ...}]
plots a 3D histogram of the values {xi, yi}.
Histogram3D[{{x1, y1}, {x2, y2}, ...}, bspec]
plots a 3D histogram with bins specified by bspec.
Histogram3D[{{x1, y1}, {x2, y2}, ...}, bspec, hspec]
plots a 3D histogram with bin heights computed according to the specification hspec.
Histogram3D[{data1, data2, ...}]
plots 3D histograms for multiple datasets datai.
  • Histogram3D[data] by default plots a histogram with equal bins chosen to approximate an assumed underlying smooth distribution of the values {xi, yi}.
  • The x-width of each bin is computed according to the values xi; the y-width according to the yi.
  • The following bin specifications bpsec can be given:
nuse n bins
{w}use bins of width w
{min,max,w}use bins of width w from min to max
{{b1,b2,...}}use bins [b1, b2), [b2, b3), ...
Automaticdetermine bin widths automatically
"name"use a named binning method
fwapply fw to get an explicit bin specification {b1, b2, ...}
{xspec,yspec}give different x and y specifications
  • Possible named binning methods include:
"Sturges"compute the number of bins based on the length of data
"Scott"asymptotically minimize the mean square error
"FreedmanDiaconis"twice the interquartile range divided by the cube root of sample size
"Wand"one-level recursive approximate Wand binning
"Log"logarithmic bin widths
  • The function fw in Histogram3D[data, fw] is applied to a list of all {xi, yi}, and should return an explicit bin list {{bx1, bx2, ...}, {by1, by2, ...}}. In Histogram3D[data, {fx, fy}], fx is applied to the list of xi, and fy to the list of yi.
  • Different forms of 3D histogram can be obtained by giving different bin height specifications hspec in Histogram3D[data, w, hspec]. The following forms can be used:
"Count"the number of values lying in each 2D bin
"Probability"fraction of values lying in each 2D bin
"ProbabilityDensity"fraction of values divided by 2D bin area
"LogCount", "LogProbability", "LogProbabilityDensity"logarithmic heights
fhheights obtained by applying fh to bins and counts
  • The function fh in Histogram3D[data, bspec, fh] is applied to 3 arguments: a list of x bins {{bx1, bx2}, {bx2, ...}, ...}, a list of y bins {{by1, by2}, {by2, ...}, ...}, and the corresponding 2D array of counts {{c11, c12, ...}, {c21, ...}, ...}. The function should return an array of heights to be used for each of the cij.
  • Only values {xi, yi} that consist of real numbers are assigned to bins; others are taken to be missing.
  • In Histogram3D[{data1, data2, ...}, ...], automatic bin locations are determined by combining all the datasets datai.
  • Histogram3D[{..., wi[datai, ...], ...}, ...] renders the histogram elements associated with dataset datai according to the specification defined by the symbolic wrapper wi.
AxesTruewhether to draw axes
BarOriginBottomorigin of histogram bars
BoxRatios{1,1,0.4}bounding 3D box ratios
ChartBaseStyleAutomaticoverall style for bars
ChartElementFunctionAutomatichow to generate raw graphics for bars
ChartElementsAutomaticgraphics to use in each of the bars
ChartLabelsNonecategory labels for datasets
ChartLayoutAutomaticoverall layout to use
ChartLegendsNonelegends for data elements and datasets
ChartStyleAutomaticstyle for bars
ColorFunctionAutomatichow to color bars
ColorFunctionScalingTruewhether to normalize arguments to ColorFunction
LabelingFunctionAutomatichow to label elements
LegendAppearanceAutomaticoverall appearance of legends
Lighting"Neutral"simulated light sources to use
MethodAutomaticmethods to use
PerformanceGoal$PerformanceGoalaspects of performance to try to optimize
  • Possible settings for ChartLayout include "Overlapped" and "Stacked".
  • The arguments supplied to ChartElementFunction are the bin region {{xmin, xmax}, {ymin, ymax}, {zmin, zmax}}, the bin values lists, and metadata {m1, m2, ...} from each level in a nested list of datasets.
  • A list of built-in settings for ChartElementFunction can be obtained from ChartElementData["Histogram3D"].
  • The argument supplied to ColorFunction is the height for each bin.
Generate a 3D histogram for a list of pairs:
Multiple datasets:
Generate a probability histogram for a list of values:
Use any graphic for pictorial bars:
Use procedural bars:
Generate a 3D histogram for a list of pairs:
In[1]:=
Click for copyable input
Out[1]=
 
Multiple datasets:
In[1]:=
Click for copyable input
In[2]:=
Click for copyable input
Out[2]=
 
Generate a probability histogram for a list of values:
In[1]:=
Click for copyable input
Out[1]=
 
Use any graphic for pictorial bars:
In[1]:=
Click for copyable input
Out[1]=
Use procedural bars:
In[2]:=
Click for copyable input
Out[2]=
Specify the number of bins to use:
Specify a different number of bins to use in x and y:
Specify the bin width:
Specify a different bin width to use in x and y:
Specify bin delimiters:
Specify different bin delimiters to use in x and y:
Specify bin delimiters as an explicit list:
Specify different bin delimiters to use in x and y:
Use different automatic binning methods:
Use logarithmically spaced bins:
Use different height specifications:
Use a height function that accumulate the bin counts over the y direction:
Bins associated with a dataset are styled the same:
Non-real data is taken to be missing:
Use different layouts to display multiple datasets:
Control the origin of bars:
Use wrappers on individual data, datasets or collections of datasets:
Wrappers can be nested:
Override the default tooltips:
Use PopupWindow to provide additional drilldown information:
Button can be used to trigger any action:
Use an explicit list of styles for the bars:
Use any gradient or indexed color schemes from ColorData:
ChartBaseStyle can be used to set an initial style for all chart elements:
Style can be used to override styles:
Use any 3D graphic for pictorial bars:
Use built-in programmatically generated bars:
For detailed settings use PalettesChartElementSchemes:
Use Labeled to add a label to a dataset:
Use symbolic positions for label placement:
Provide value labels for bars by using LabelingFunction:
Add categorical legend entries for datasets:
Use Legended to add additional legend entries:
Use Placed to affect the positioning of legends:
Specify different bin and height specifications for each dataset:
Change the bar origin:
Use ChartBaseStyle to style bars:
ChartBaseStyle combines with ChartStyle:
ChartStyle may override settings for ChartBaseStyle:
ChartBaseStyle combines with Style:
Style may override settings for ChartBaseStyle:
ColorFunction may override settings for ChartBaseStyle:
Create a pictorial chart based on any Graphics3D object:
Use a different graphic for each dataset:
Graphics are used cyclically:
Styles are inherited from styles set through ChartStyle etc:
Use Style to override ChartStyle:
Explicit styles set in the graphic will override other style settings:
Get a list of built-in settings for ChartElementFunction:
For detailed settings use PalettesChartElementSchemes:
ChartElementFunction appropriate to show the global scale:
Write a custom ChartElementFunction:
Built-in element function may have options, use PalettesChartElementSchemes to set them:
Place dataset labels above each histogram:
Labeled wrappers around datasets will place additional labels:
Symbolic positions outside the bar:
Use different layouts to display multiple datasets:
With multiple datasets that are fairly disjoint typically "Overlapped" works better:
Generate a legend based on chart style:
Use Legended to add additional legend entries:
Use Legended to specify indvidual legend entries:
Use Placed to control the placement of legends:
Use a legend to label the layers in a stacked histogram:
Use ChartStyle to style bars:
Give a list of styles:
Use "Gradient" colors from ColorData:
Use "Indexed" colors from ColorData:
Styles are used cyclically:
Style overrides settings for ChartStyle:
ColorFunction overrides settings for ChartStyle:
ChartElements may override settings for ChartStyle:
Color by bar height:
Use ColorFunctionScaling->False, to get unscaled height values:
ColorFunction overrides styles in ChartStyle:
Use ColorFunction to combine different style effects:
By default scaled height values are used:
Use ColorFunctionScaling->False, to get unscaled height values:
Use automatic labeling by values through Tooltip and StatusArea:
Do no labeling:
Use Placed to control label placement:
Control the formatting of labels:
Use the dataset position index to generate the label:
Place complete labels as tooltips:
Generate a bar chart with interactive highlighting:
Emphasize performance, by disabling interactive behaviors:
Typically less memory is required non-interactive charts:
Create a MatrixPlot from counts extracted from a histogram:
Select a subset of languages available in DictionaryLookup:
Create a histogram of word lengths of various languages:
Histogram3D automatically determine bins to use based on data:
Use BinCounts to for explicit binning of data:
Display using BarChart:
Use PDF to get parametric probability density function:
Show together with Histogram of random data:
Overlay different bin specifications:
Vary charting options to affect display:
New in 7
Ask a question about this page  |  Suggest an improvement  |  Leave a message for the team