«levenes-test» 태그된 질문

1
lmer 모델의 효과 반복 계산
방금 혼합 효과 모델링을 통해 측정의 반복성 (일명 신뢰성, 일명 클래스 내 상관 관계)을 계산하는 방법을 설명하는 이 문서를 보았습니다. R 코드는 다음과 같습니다. #fit the model fit = lmer(dv~(1|unit),data=my_data) #obtain the variance estimates vc = VarCorr(fit) residual_var = attr(vc,'sc')^2 intercept_var = attr(vc$id,'stddev')[1]^2 #compute the unadjusted repeatability R = intercept_var/(intercept_var+residual_var) …
28 mixed-model  reliability  intraclass-correlation  repeatability  spss  factor-analysis  survey  modeling  cross-validation  error  curve-fitting  mediation  correlation  clustering  sampling  machine-learning  probability  classification  metric  r  project-management  optimization  svm  python  dataset  quality-control  checking  clustering  distributions  anova  factor-analysis  exponential  poisson-distribution  generalized-linear-model  deviance  machine-learning  k-nearest-neighbour  r  hypothesis-testing  t-test  r  variance  levenes-test  bayesian  software  bayesian-network  regression  repeated-measures  least-squares  change-scores  variance  chi-squared  variance  nonlinear-regression  regression-coefficients  multiple-comparisons  p-value  r  statistical-significance  excel  sampling  sample  r  distributions  interpretation  goodness-of-fit  normality-assumption  probability  self-study  distributions  references  theory  time-series  clustering  econometrics  binomial  hypothesis-testing  variance  t-test  paired-comparisons  statistical-significance  ab-test  r  references  hypothesis-testing  t-test  normality-assumption  wilcoxon-mann-whitney  central-limit-theorem  t-test  data-visualization  interactive-visualization  goodness-of-fit 

3
R에서 Levene 테스트 기능을 사용하는 방법은 무엇입니까?
나는 통계와 R에 초보자이며 Levene 함수를 사용하는 데 문제가 있습니다 (두 샘플의 분산 평등을 확인하고 싶습니다). 설명서에는 다음을 실행해야한다고 나와 있습니다. levene.test (y, 그룹) 그러나 나는 y와 그룹으로 무엇을 넣어야할지 모르겠습니다. 분산의 동등성을 확인하려는 두 가지 다른 샘플이 있습니다. 샘플 값 중 하나를 y로, 두 번째 값을 그룹 매개 변수로 …

2
바틀렛 테스트 대 레벤 테스트
현재 분산 분석 가정에 대한 위반을 해결하려고합니다. 나는 Shapiro-Wilk를 사용하여 정규성을 테스트했으며 Levene의 검정과 Bartlett의 분산 평등 검정을 모두 다루었습니다. 이후 로그가 불균형 분산을 시도하고 수정하기 위해 데이터를 변환했습니다. 나는 로그 변환 된 데이터에 대한 Bartlett의 테스트를 다시 수행했지만 여전히 중요한 p- 값을 받았으며 호기심으로 Levene의 테스트를 실행하여 중요하지 않은 …

3
Levene 또는 Bartlett의 분산 동질성 검정에 의해 생성 된 p- 값 해석
분산 분석의 동질성에 대한 분산 분석의 가정을 위반하지 않는지 확인하기 위해 실험 중 하나의 데이터 그룹에 대해 Levene 및 Bartlett의 테스트를 실행했습니다. 마음에 들지 않으면 잘못된 가정을하고 있지 않다는 것을 당신과 함께 확인하고 싶습니다 : D 두 검정에서 모두 반환 된 p- 값은 동일한 분산을 사용하여 다시 생성 된 데이터가 …
당사 사이트를 사용함과 동시에 당사의 쿠키 정책개인정보 보호정책을 읽고 이해하였음을 인정하는 것으로 간주합니다.
Licensed under cc by-sa 3.0 with attribution required.