Hi guys, I have created a table containing sum of a few variables. I wanted to plot the sum of these variables on a graph, preferably a histogram. This would help me understand the different variables on a graph. proc sql; create table t4 as select sum(Hardplastics) as Hard_Plastics, sum(Softplastics) as Soft_Plastics, sum(plasticlines) as Plastic_Lines, sum(styrofoam) as Styrofoam, sum(pellets) as Pellets, sum(driftingwood) as Drifting_Wood, sum(pumice) as Pumice from assign2.survey; run; Intended Output
... View more