由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - A question about R
相关主题
SAS 结果处理的问题请问 Kolmogorov–Smirnov (KS) statistic。
问个统计test问题求问一个R apply 函数的问题
请教: 非正太数据进行log 转化后仍然非正太, 该怎么办?弱问个统计问题,求帮助
R code question如何运用已知两组的N,MEAN,SD进行u检验 in SAS?
数据不正态怎么办Can normally distributed time series data are autocorrelated? Thanks.
问个goodness of fit的问题[合集] 如何检验normality??
求助!! MEAN test 问题!how to determine data fit some distribution? thanks
如何用DATAFRAME里的数字作为参数去产生随即数做SIMULATION想要描述不同种类的random variables之间的correlation有可能吗?
相关话题的讨论汇总
话题: question话题: sd话题: mean话题: about话题: ttest
进入Statistics版参与讨论
1 (共1页)
i*****c
发帖数: 1322
1
How to do ttest in R if I only know the mean, sd and n of 2 groups? Thanks a
lot.
n*****n
发帖数: 3123
2
用公式算
i*****c
发帖数: 1322
3
I can do it using formula. But how about anova? I think R is much easier.Can
anyone tell me the code? I'm learning R but didn't figure out how to do it.
Many thanks.
x****n
发帖数: 43
4
sample1 <- rnorm(n1, mean=mean1, sd=sd1)
sample2 <- rnorm(n2, mean=mean2, sd=sd2)
t.test(sample1, sample2)
h******3
发帖数: 387
5
I think you just translate your formula and use R as a calculator. This is a
fixed number and not sampling problem. just my 2 cents.
i*****c
发帖数: 1322
6
Thanks a lot.
Another question: can R tell if the sample is normally distributed just by n
,mean and sd?
b**********i
发帖数: 1059
7
R will return a message "Not enough information", I guess?

n

【在 i*****c 的大作中提到】
: Thanks a lot.
: Another question: can R tell if the sample is normally distributed just by n
: ,mean and sd?

f***a
发帖数: 329
8
光知道n,mean,sd这3个值,神也判断不了是不是normal吧。。。
有具体sample的话,一般就是qqplot, some normality tests, 或者不走寻常路
calculate
hellinger/kolmogorov distance between normal and empirical distribution of
your sample

by n

【在 i*****c 的大作中提到】
: Thanks a lot.
: Another question: can R tell if the sample is normally distributed just by n
: ,mean and sd?

1 (共1页)
进入Statistics版参与讨论
相关主题
想要描述不同种类的random variables之间的correlation有可能吗?数据不正态怎么办
normality check问个goodness of fit的问题
Paired T-test Assumption not Satisfied求助!! MEAN test 问题!
normality test of a set of data?如何用DATAFRAME里的数字作为参数去产生随即数做SIMULATION
SAS 结果处理的问题请问 Kolmogorov–Smirnov (KS) statistic。
问个统计test问题求问一个R apply 函数的问题
请教: 非正太数据进行log 转化后仍然非正太, 该怎么办?弱问个统计问题,求帮助
R code question如何运用已知两组的N,MEAN,SD进行u检验 in SAS?
相关话题的讨论汇总
话题: question话题: sd话题: mean话题: about话题: ttest