MathGroup Archive 2006

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

Search the Archive

Re: Histogram3D

  • To: mathgroup at smc.vnet.net
  • Subject: [mg72022] Re: Histogram3D
  • From: "mktrias at gmail.com" <mktrias at gmail.com>
  • Date: Sat, 9 Dec 2006 06:09:28 -0500 (EST)
  • References: <el8vhq$1a$1@smc.vnet.net>

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 -


  • Prev by Date: Re: Solve chokes on Piecewise input that Reduce handles quite well??
  • Next by Date: Re: On Reduce
  • Previous by thread: Re: Histogram3D
  • Next by thread: Re: Re: Histogram3D