Date: Mon, 10 Jul 2006 13:06:32 -0400
Reply-To: Heman Hunters <hemanhunters@GMAIL.COM>
Sender: "SAS(r) Discussion" <SAS-L@LISTSERV.UGA.EDU>
From: Heman Hunters <hemanhunters@GMAIL.COM>
Subject: Histogram, data to Excel
Hello (again),
I have just started to learn the plotting functions of SAS. Recently I
made a histogram out of a vast amount of data. I don't really like the
graphics of SAS (or maybe I just haven't learnt to manipulate them well
enough, but...), so I would like to export the data to Excel and make my
histogram there. The problem is that there is far too much underlying data
to export the data itself to Excel, so I want to export the data that
comprises the historgram to Excel. How do I do this? I was thinking maybe
something like cntlout for proc formats...
Pseudo-code (my "wish" is in CAPITAL LETTERS):
proc univariate data = customersAccounts noprint OUT = HISTOGRAM MATRIX;
histogram amount/cfill=blue endpoints = 0 to 10 by 0.5;
run;
Thanks to all you kind people who devote your time to answering questions
here!
|