Hi there, I have a few data points (a simple series) that I would like to plot using some form of interpolation, and after a good bit of exploration: proc sgplot, with the series statement and the smoothconnect option has been producing the best looking results by a good margin (I explored splines and loess but these do not produce what I am looking for). A complication is that I need to similarly do this for the CI, and would much prefer to plot that as a band. The band statement, as far as I can tell, does not have a matching smoothing option. So my inital plan was to use ods and abstract values from the plot (just do 3 separate series). However, ods is just giving me the original data points back, not any of the in between. I may not be looking at the right place, but trying to track down the documentation for smoothconnect just leads me to the option itself, no explanation of what is going on in the background if I was going to go down the route of trying to replicate the approach elsewhere to set up the input for the plot. Is there some way I can get those values? SAS must have them in the background somewhere, right? Thank you
... View more