To plot only certain quantiles, you can use the quantile
function to compute the desired quantiles, and then plot them using the plot
function.
Here is an example of plotting the 10th, 50th, and 90th percentiles of a data set:
main.m146 chars9 lines
This will plot the three quantiles as points connected by a line. You can customize the plot appearance as desired (e.g., change the line style, marker type, color, etc.).
gistlibby LogSnag