由买买提看人间百态

topics

全部话题 - 话题: cdfplot
(共0页)
m********t
发帖数: 16
1
cdfplot can be used to draw cumulative probability distribution graph
but it can draw only one line each time
as cdfplot(x) admits only one parameter
what would i do if i want draw two lines in one graph?
3q~
w********r
发帖数: 290
2
try "hold on"
m********t
发帖数: 16
3
that works well
thank u very much~
j********s
发帖数: 976
4
proc capability中的cdfplot可以画出ECDF
请教如何将几个ECDF画在一个图中
先谢过了
c**********e
发帖数: 2007
5
The following will create two CDFs in two graphs.
How to put them in one graph?
proc capability data=data1;
var var1 var2;
cdfplot;
run;
g*******y
发帖数: 380
6
来自主题: Statistics版 - Modify the label of cdf plot in SAS?
Hi,all
I use the following code to generate the cdf plot:
proc univariate data=temp1 noprint;
var PPB;
by zone;
class type;
cdfplot PPB/overlay vref = 5 95
cvref = black
vreflabels = '5%' '95%' ;
run;
The goal it to get the overlapped plots of cumulative distribution frequency
of "PPB" in two different type by each zone.
Now I got those plots by zone, and the title is "cumulative distribution
function for PPB", how cou
w*******9
发帖数: 1433
7
proc univariate data=ds;
var pcs;
class female;
cdfplot pcs / overlay;
run;
(共0页)