I have a data with a column of percentages, the column in inconsistent. Some obs are discrete values like X% and some are ranges x % - y%. I have to take average of range obs. How can I do that ? Below is an example of my problem data _null_; input pct $; cards; 15% 5 30 10-15% ; run;
... View more