由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - data distribution fit
相关主题
test count data distribution in SAS【大包子】问个macro的问题
请教达人sas作图的一个问题sas help on creating histogram
need help in sas(urgent)what is choice of right skewed distribution
请教一个问题SAS问一个关于skewness的问题
如何将两个bell curve显示在一个图中统计大牛帮帮忙
odd resulted graph from PROC UNIVARIATE (histogram) results[分享]牛人整理的统计学教材
怎样决定用什么distribution做kernel[分享]牛人整理的统计学教材(119部整理完毕)
根据一个已知的数据集,估算这个数据的probability distribution 一般用那些方法?bivarate normal distribution的可传递性
相关话题的讨论汇总
话题: gap话题: data话题: axis1话题: plates
进入Statistics版参与讨论
1 (共1页)
v*********w
发帖数: 1632
1
I have run a data distribution fit code below.
Can anybody help me figure out why the histogram cannot be output?
Thanks.
data Plates;
label Gap = 'Plate Gap in cm';
input Gap @@;
datalines;
0.746 0.357 0.376 0.327 0.485 1.741 0.241 0.777 0.768 0.409
0.252 0.512 0.534 1.656 0.742 0.378 0.714 1.121 0.597 0.231
0.541 0.805 0.682 0.418 0.506 0.501 0.247 0.922 0.880 0.344
0.519 1.302 0.275 0.601 0.388 0.450 0.845 0.319 0.486 0.529
1.547 0.690 0.676 0.314 0.736 0.643 0.483 0.352 0.636 1.080
;
run;
title 'Distribution of Plate Gaps';
ods select ParameterEstimates GoodnessOfFit FitQuantiles HistogramBins;
proc univariate data=Plates;
var Gap;
histogram / midpoints=0.2 to 1.8 by 0.2
lognormal
weibull
gamma
vaxis = axis1
name = 'HistogramBins';
inset n mean(5.3) std='Std Dev'(5.3) skewness(5.3)
/ pos = ne header = 'Summary Statistics';
axis1 label=(a=90 r=0);
run;
1 (共1页)
进入Statistics版参与讨论
相关主题
bivarate normal distribution的可传递性如何将两个bell curve显示在一个图中
请教怎么用SAS做distribution fitodd resulted graph from PROC UNIVARIATE (histogram) results
Local FDR怎样决定用什么distribution做kernel
问一个distribution的问题根据一个已知的数据集,估算这个数据的probability distribution 一般用那些方法?
test count data distribution in SAS【大包子】问个macro的问题
请教达人sas作图的一个问题sas help on creating histogram
need help in sas(urgent)what is choice of right skewed distribution
请教一个问题SAS问一个关于skewness的问题
相关话题的讨论汇总
话题: gap话题: data话题: axis1话题: plates