I am averaging the percentages of teaching times of different types of faculty over the span of 3 years. The averaged percentages need to add up to 100%, but they don't because there are missing values. Is there a way to count missing values when I use the mean functions?
'''
aggregate outfile=* /break car cip control
/ ncount = n
/ {5}
= mean({0} to {1}).
'''