タグ付けされた質問 「yates-correction」

5
非常に多数のデータポイントで値の代入を実行する方法は?
非常に大きなデータセットがあり、約5%のランダムな値が欠落しています。これらの変数は互いに相関しています。次のRデータセットの例は、ダミーの相関データを使用した単なるおもちゃの例です。 set.seed(123) # matrix of X variable xmat <- matrix(sample(-1:1, 2000000, replace = TRUE), ncol = 10000) colnames(xmat) <- paste ("M", 1:10000, sep ="") rownames(xmat) <- paste("sample", 1:200, sep = "") #M variables are correlated N <- 2000000*0.05 # 5% random missing values inds <- round ( runif(N, 1, length(xmat)) …
12 r  random-forest  missing-data  data-imputation  multiple-imputation  large-data  definition  moving-window  self-study  categorical-data  econometrics  standard-error  regression-coefficients  normal-distribution  pdf  lognormal  regression  python  scikit-learn  interpolation  r  self-study  poisson-distribution  chi-squared  matlab  matrix  r  modeling  multinomial  mlogit  choice  monte-carlo  indicator-function  r  aic  garch  likelihood  r  regression  repeated-measures  simulation  multilevel-analysis  chi-squared  expected-value  multinomial  yates-correction  classification  regression  self-study  repeated-measures  references  residuals  confidence-interval  bootstrap  normality-assumption  resampling  entropy  cauchy  clustering  k-means  r  clustering  categorical-data  continuous-data  r  hypothesis-testing  nonparametric  probability  bayesian  pdf  distributions  exponential  repeated-measures  random-effects-model  non-independent  regression  error  regression-to-the-mean  correlation  group-differences  post-hoc  neural-networks  r  time-series  t-test  p-value  normalization  probability  moments  mgf  time-series  model  seasonality  r  anova  generalized-linear-model  proportion  percentage  nonparametric  ranks  weighted-regression  variogram  classification  neural-networks  fuzzy  variance  dimensionality-reduction  confidence-interval  proportion  z-test  r  self-study  pdf 

2
2 x 2分割表のイエーツ連続性補正
2 x 2分割表のイェーツ連続性訂正について、現場の人々から意見を集めたいと思います。ウィキペディアの記事では、調整が長すぎる可能性があると記載されているため、限られた意味でのみ使用されています。ここの関連記事では、それ以上の洞察は得られません。 これらのテストを定期的に使用している人々に、あなたはどう思いますか?補正を使用する方が良いですか。 また、95%の信頼水準で異なる結果が得られる実際の例。これは宿題の問題でしたが、私たちのクラスはイェーツの連続性補正をまったく扱っていないので、あなたが私のために私の宿題をしていないことを知って簡単に眠ってください。 samp <- matrix(c(13, 12, 15, 3), byrow = TRUE, ncol = 2) colnames(samp) <- c("No", "Yes") rownames(samp) <- c("Female", "Male") chisq.test(samp, correct = TRUE) chisq.test(samp, correct = FALSE)

1
ピアソンとマクネマーのカイ2乗検定の連続性補正
これはかなり基本的な質問だと思いますが、連続性補正という用語がよくわからないことに気づきました。 私はRを使用correct=TRUEし、chisq.testとの両方で同じ構文を見つけましたmcnemar.test。それらは異なる導通補正方法を参照していますか? ピアソンのカイ2乗検定のyateの連続性は、結果が「過剰調整」される可能性があるため、あまり人気がありませんが、マクネマーのカイ2乗検定についてはどうですか? ありがとう。

2
prop.testによって返された信頼区間におけるイェーツの連続性補正
これは、prop.testによって推定された信頼区間です n <- 600; x <- 276; p <- 0.40 prop.test(x, n, p, alternative="two.sided", conf.level=0.95, correct=T) 95 percent confidence interval: 0.4196787 0.5008409 prop.testの下のコードを読んで、それを再現しようとしました。これらの2つの制限を取得する簡単な方法を次に示します ESTIMATE <- x/n YATES <- 0.5 conf.level <- 0.95 z <- qnorm((1 + conf.level)/2) YATES <- min(YATES, abs(x - n * p)) z22n <- z^2/(2 * n) …
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.