Welcome to MacForumz.com!
FAQFAQ   SearchSearch      ProfileProfile    Private MessagesPrivate Messages   Log in/Register/PasswordLog in/Register/Password

Histograms

 
   Macintosh computer (Home) -> Excel RSS
Related Topics:
Excel Macro Problem - I just upgraded my Mac to Office 2004. I am trying to open some older Excel files that were created on a PC that have Macros in them. The opened fine in Office X. They open fine but when I close the Excel file it says the Excel has quit. It..

unicode characters - read only error ? - Using an Excel 2001 file across a Mac network under OS 9. Getting the following error from networked users: file has unicode charaters that could not be converted to the active codepage. Since some data has been lost, the workbook is being marked..

Consecutive numbering - numbering (Excel: mac 2001 but will also have to run on PC 2000) Entries in C2 (starting at a row, in this instance R11) are numbered (1, 2, 3, 4, etc) in C1 I generate the numbers manually by typing..

Snap to grid and/or shape - Snap to grid and/or shape (Excel: mac 2001 but will also have to run on PC 2000) Having formed an object with ŒSnap to gridč and/or ŒSnap to shapeč, how can I unsnap it and change the size and position at will? Snap to Grid and Snap to..

Startup folder - This is pretty weird, but weird things happening seem to be the norm for Excel... I'm seeing files of mine duplicate into the startup folder. It's so bizarre, I don't expect anyone to be able to answer it, but I have to ask. OS 10.3.4..
Next:  Excel: Excel 2008 for Mac  
Author Message
meperezs

External


Since: Jan 29, 2008
Posts: 1



(Msg. 1) Posted: Tue Jan 29, 2008 6:33 am
Post subject: Histograms
Archived from groups: microsoft>public>mac>office>excel (more info?)

Hello,<br>
<br>
I am attempting to do histograms in excel 2008. I know how to do it in the windows counterpart because of school, but I have homework to accomplish for the class and cant find the function anywhere in the mac side of business.

 >> Stay informed about: Histograms 
Back to top
Login to vote
Mike Middleton

External


Since: Mar 01, 2006
Posts: 37



(Msg. 2) Posted: Tue Jan 29, 2008 10:17 am
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

meperezs -

Mac Excel 2008 does not have the Data Analysis features of the Analysis
ToolPak, so there is no Histogram option.

As a workaround, you can prepare a frequency distribution using the
FREQUENCY array-entered worksheet function (or COUNTIF or a Pivot Table),
and you can plot using the Column chart type.

Another source is Jon Peltier's web site
http://www.peltiertech.com/Excel/Charts/statscharts.html#Hist1

- Mike Middleton
http://www.DecisionToolworks.com
Decision Analysis Add-ins for Excel



<meperezs.DeleteThis@officeformac.com> wrote in message
news:ee8b2d3.-1@webcrossing.caR9absDaxw...
Hello,

I am attempting to do histograms in excel 2008. I know how to do it in the
windows counterpart because of school, but I have homework to accomplish for
the class and cant find the function anywhere in the mac side of business.

 >> Stay informed about: Histograms 
Back to top
Login to vote
CyberTaz

External


Since: Apr 06, 2006
Posts: 692



(Msg. 3) Posted: Tue Jan 29, 2008 10:22 am
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

Sorry, but I'm afraid you've hit one of the sore spots of Excel 2008. The
Histogram feature was a part of the Analysis ToolPak add-ins which are no
longer included due to the lack of support for VBA in this version. Unless a
future update brings back a suitable alternative or something comparable is
developed by a 3rd party I'm afraid you'll need to use a previous version
for that capability - as well as some others.

The only other alternative is to run a Windows version of Excel on an Intel
Mac in Parallels/Fusion/Boot Camp or VPC7 if a PPC Mac. [I don't know if
comparable/compatible features are available in other worksheet programs or
not.]
--
Regards |:>)
Bob Jones
[MVP] Office:Mac

<meperezs.TakeThisOut@officeformac.com> wrote in message
news:ee8b2d3.-1@webcrossing.caR9absDaxw...
> Hello,
>
> I am attempting to do histograms in excel 2008. I know how to do it in the
> windows counterpart because of school, but I have homework to accomplish
> for the class and cant find the function anywhere in the mac side of
> business.
 >> Stay informed about: Histograms 
Back to top
Login to vote
Carl Witthoft

External


Since: Mar 22, 2004
Posts: 526



(Msg. 4) Posted: Tue Jan 29, 2008 5:30 pm
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I noticed this request has come up a couple times. FWIW, here is a Q&D
bit of MatLab code (actually I run it under FreeMat) to dump data into a
histogram. I'm sure there's a tighter algorithm but this works-- you
may get a few 'lost' points at the top end depending on how your machine
and your Matlab clone work.

% simple histogram binner "hist.m"
% take any input array and bin it up. For first cut, just spec number
of
% bins and use min, max to set boundaries.
%
function [y,binvals] = hist(array,nbins);
%
%
%
if (nargin ~=2)

error('Usage: hist(array,nbins')
end
% get endpoints; damn the roundoffs, full speed ahead
low = min(array)-0.001;
high = max(array)+ 0.001 ;
delta = (high - low)/nbins;
j = 1;
while (low < high) %getting cute here- reusing the variable
% bracketed stuff returns logical 1 or 0 for true/false.
bin(j) = sum(array >= low & array < (low + delta));
binval(j) = low;
j = j + 1;
low = low + delta;
end
% need this only because I didn't use "y" and "binvals" inside loop
y = bin;
binvals = binval;

% there may be leftover values (at least one, the way I calc'd "high" ),
so
% y(j) = numel(array)-sum(bin);
%this leaves y longer than binvals. Tough noogies
% not clear to me (yet) why this isn't necessary. My last bin, i.e. low
+k*delta,
% somehow always manages to be slightly greater than max(array) . It is
a cumulative
% rounding error -- I have no idea whether it will always go "large"
-----
Use at your own risk :-)


In article <Ouev9MqYIHA.4808 RemoveThis @TK2MSFTNGP05.phx.gbl>,
"Mike Middleton" <mike RemoveThis @mikemiddleton.com> wrote:

> meperezs -
>
> Mac Excel 2008 does not have the Data Analysis features of the Analysis
> ToolPak, so there is no Histogram option.
>
> As a workaround, you can prepare a frequency distribution using the
> FREQUENCY array-entered worksheet function (or COUNTIF or a Pivot Table),
> and you can plot using the Column chart type.
>
> Another source is Jon Peltier's web site
> http://www.peltiertech.com/Excel/Charts/statscharts.html#Hist1
>
> - Mike Middleton
> http://www.DecisionToolworks.com
> Decision Analysis Add-ins for Excel
>
>
>
> <meperezs RemoveThis @officeformac.com> wrote in message
> news:ee8b2d3.-1@webcrossing.caR9absDaxw...
> Hello,
>
> I am attempting to do histograms in excel 2008. I know how to do it in the
> windows counterpart because of school, but I have homework to accomplish for
> the class and cant find the function anywhere in the mac side of business.

--
Team EM to the rescue! http://www.team-em.com
 >> Stay informed about: Histograms 
Back to top
Login to vote
JE McGimpsey

External


Since: Mar 07, 2004
Posts: 3826



(Msg. 5) Posted: Wed Jan 30, 2008 11:22 am
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <#ddeHqoYIHA.4828@TK2MSFTNGP05.phx.gbl>,
"CyberTaz" <typegeneraltaz1ATcomcastdotnet> wrote:

> Sorry, but I'm afraid you've hit one of the sore spots of Excel 2008. The
> Histogram feature was a part of the Analysis ToolPak add-ins which are no
> longer included due to the lack of support for VBA in this version. Unless a
> future update brings back a suitable alternative or something comparable is
> developed by a 3rd party I'm afraid you'll need to use a previous version
> for that capability - as well as some others.
>
> The only other alternative is to run a Windows version of Excel on an Intel
> Mac in Parallels/Fusion/Boot Camp or VPC7 if a PPC Mac.


Oh baloney.

Check out the Histogram workbook here:

http://www.coventry.ac.uk/ec/~nhunt/oatbran/

About all that of the ATP Wizards did is help organize input and output
of built-in XL functions and charts (except for the Random Number
Generator, which was, and still is, execrable).

Granted, the output of the ATP is organized, and it does give people who
know what they're doing a shortcut (and allows those who don't to come
up with result their instructor wants - sometimes), but the wizards
aren't magic, nor even particularly complex.

Of course, the advantage of doing it directly in a workbook is that you
can see the formulae, and verify that they're operating on the proper
ranges/results, rather than simply hoping the black-box works.



I wouldn't mind if MacBU could somehow manage to bring back add-in
functionality, but the ATP isn't the reason...
 >> Stay informed about: Histograms 
Back to top
Login to vote
CyberTaz

External


Since: Apr 06, 2006
Posts: 692



(Msg. 6) Posted: Thu Jan 31, 2008 12:54 pm
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

"JE McGimpsey" <jemcgimpsey.RemoveThis@mvps.org> wrote in message
news:jemcgimpsey-FBA5BF.11223530012008@news.microsoft.com...
<snip>
> Oh baloney.
<snip>

Gee John - don't be so touchy;-)

I didn't mean to infer that Histograms couldn't be done in Excel, just that
the convenience of the add-in was not available in 2008 and that there isn't
as yet anything to directly take its place.

Many of those who relied on the add-in may not be able to devise such a
workbook of their own by creating the necessary functions - I *know* I
couldn't, at least not without devoting far more time than I'm able.

The link you provided is exceptionally generous & I'm sure the OP as well as
many others will benefit from it. Thanks for the follow-up!

--
Regards |:>)
Bob Jones
[MVP] Office:Mac
 >> Stay informed about: Histograms 
Back to top
Login to vote
JE McGimpsey

External


Since: Mar 07, 2004
Posts: 3826



(Msg. 7) Posted: Thu Jan 31, 2008 12:54 pm
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <u$y2OIDZIHA.4476@TK2MSFTNGP06.phx.gbl>,
"CyberTaz" <typegeneraltaz1ATcomcastdotnet> wrote:

> Many of those who relied on the add-in may not be able to devise such a
> workbook of their own by creating the necessary functions - I *know* I
> couldn't, at least not without devoting far more time than I'm able.

TOUCHY!?!? You wanna see TOUCHY!?!?!? At least I said "baloney"!!!
<vbseg>

OK, I'm a little sensitive - but seeing people complaining about "not
being able to do stats" without the ATP is a real peeve.

What you point out is precisely the more-than-potential problem that I
see all the time with my academic clients.

<rant>
While *some* users know enough about statistics to make the ATP a great
shortcut, a *lot* of people use it as a crutch, ignorant of the
underlying functions, and seemingly content to assume that the fact that
the ATP can produce *a* result means that it's a *valid* result.

I recognize how convenient the wizards are.

But, for just one example, I can't tell you how many times I've seen
t-tests used in biological, economic and social science applications
BECAUSE THE ATP MAKES IT EASY, even when it's COMPLETELY inappropriate
with their small non-Gaussian distributions.

If one *can't* produce the same results with functions, then I submit
that they *shouldn't* produce them with the ATP.
</rant>
 >> Stay informed about: Histograms 
Back to top
Login to vote
Sebastian Lourido

External


Since: Mar 26, 2008
Posts: 1



(Msg. 8) Posted: Wed Mar 26, 2008 2:31 pm
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

I agree with Mauricio. It's very upsetting that features from a previous version have been omitted. This will force me to use a different program. :angry:
 >> Stay informed about: Histograms 
Back to top
Login to vote
Carl Witthoft

External


Since: Mar 22, 2004
Posts: 526



(Msg. 9) Posted: Thu Mar 27, 2008 7:34 pm
Post subject: Re: Histograms [Login to view extended thread Info.]
Archived from groups: per prev. post (more info?)

In article <ee8b2d3.7 DeleteThis @webcrossing.caR9absDaxw>,
"Sebastian Lourido" <slourido DeleteThis @gmail.com> wrote:

> I agree with Mauricio. It's very upsetting that features from a previous
> version have been omitted. This will force me to use a different program.
> :angry:

relax.... go to Oatbran to get their histogram generator, which does
not use the toolbox or macros.

I have a jazzed-up version which is a little more flexible than theirs,
so email me if you'd like a copy.

Carl

--
Team EM to the rescue! http://www.team-em.com
 >> Stay informed about: Histograms 
Back to top
Login to vote
Display posts from previous:   
   Macintosh computer (Home) -> Excel All times are: Pacific Time (US & Canada) (change)
Page 1 of 1

 
You can post new topics in this forum
You can reply to topics in this forum
You can edit your posts in this forum
You can delete your posts in this forum
You can vote in polls in this forum



[ Contact us | Terms of Service/Privacy Policy ]