MathGroup Archive 2006

[Date Index] [Thread Index] [Author Index]

Search the Archive

Re: Histogram3D

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72001] Re: [mg71959] Histogram3D
  • From: Bob Hanlon <hanlonr at cox.net>
  • Date: Thu, 7 Dec 2006 06:26:21 -0500 (EST)
  • Reply-to: hanlonr at cox.net

Works fine here. Try starting with a fresh kernel.

$Version

5.2 for Mac OS X (June 20, 2005)

Needs["Graphics`"];

data=Table[{Random[],Random[]},{1000}];

Histogram3D[data];

Note that FrequencyData->False is the default


Bob Hanlon

---- "mktrias at gmail.com" <mktrias at gmail.com> wrote: 
> I would like to make a 3D histogram of some 2D data of the form
> {{x1,y1},{x2,y2}, ...} I tried the following:
> 
> <<Graphics`Graphics3D`
> 
> Histogram3D[data, FrequencyData->False];
> 
> The output of this is just
> Histogram3D[data, FrequencyData->False]
> 
> I looked in the help browser under Histogram3D and cannot figure out
> what the problem is. Sometimes I get the error that Histogram3D might
> be shadowed by another function in Global or Graphics? (Sorry I can't
> quote the exact error, I have since deleted it). So how do I get this
> function to work? (Yes, I loaded the package before trying to execute
> the function.)
> 
> Thanks
> Maggie.
> 


  • Prev by Date: Re: How can I get this spiked Integral evaluated???
  • Next by Date: Re: Histogram3D
  • Previous by thread: Histogram3D
  • Next by thread: Re: Histogram3D