Goodevening everyone,      I have two variables (bootstrapreturn and actualreturn) that I have plotted one CDF graphs to be able to compare them by using the following SAS code:      ods graphics on;  data Comparison;  set WORK.FAMA3CDF;  length varName $20;  ObsNum = _N_;  varName = "BootstrapReturn"; Value = BootstrapReturn; output; /* put VAR1 on this line */  varName = "ActualReturn"; Value = ActualReturn; output; /* put VAR2 on this line */  run;  proc univariate data=Comparison;  class varName;  var Value;  cdfplot Value/ overlay;  run;     That being said, I would like to be able, for each percentile, to know the proportion of observations of bootstrap return higher/lower than actual return. For example, I would like to know that, at the 95th percentile, 87% of the observations of bootstrap return are lower than actual return.    Any suggestion? I really have no idea how I could do that...     Thanks a lot in advance for your help!    
						
					
					... View more