Re: Re: Histogram3D
- To: mathgroup at smc.vnet.net
- Subject: [mg72059] Re: [mg72022] Re: Histogram3D
- From: Bob Hanlon <hanlonr at cox.net>
- Date: Sun, 10 Dec 2006 04:49:10 -0500 (EST)
- Reply-to: hanlonr at cox.net
This also works on my system. Needs["Graphics`Graphics3D`"]; data = Table[{Random[], Random[]}, {1000}]; Histogram3D[data]; Bob Hanlon ---- "mktrias at gmail.com" <mktrias at gmail.com> wrote: > Thanks! That works. For some reason simply loading <<Graphics`Graphics` > does not work, even if I Remove[Histogram3D] beforehand, whereas > Needs["Graphics`"] does work. Can you explain the difference? > > Maggie. > > On Dec 7, 6:56 am, Bob Hanlon <hanl... at cox.net> wrote: > > 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 > > > > > > > > ---- "mktr... at gmail.com" <mktr... 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.- Hide quoted text -- Show quoted text - >