table t1
v1
1
2
3
4
5
6
table t2
v2
3
4
6
table t3
v3
3
18
I want to get
table v
v1 v2 v3
1 3 3
2 4 8
3 8
4
5
6
how can I get that, thanks
jeff
1. how to put two graphs together?
2. How to put a table in an external file (txt-file)
3. put charts and frequency table in one file?
Hi, I know this is a basic question but I really want to learn... If I would like to put gcharts and proc freq tables in one file, what can I do? I have thought to try... ods pdf body= 'output.pdf'; proc freq data= mydata; title ' freq report'; tables xxx / list missing; run; proc gchart data= mydata; hbar xxx2 / something here; run; ods pdf close; Is there any way more straightforward and neat to do this? Thank you. Richard
4. SASTip 131 - Putting multiple graphs & tables on an HTML page
5. How to add the whole column together
I need to add up the whole column to get one of total number. Which proc I can use to get the total number? Thanks!
How would you best describe to a retiscent SAS student that the concept of TABLES isn't limited to SQL? This came up during a discussion on table lookup methods - and lookup tables in particular (I mean, lookup tables pre- date SQL). Even SAS data sets are referred to as tables. This made the student apoplectic. Words of wisdom most welcome!!! Thanks, Howard