https://github.com/cran/coin
Revision e26e4aab1f2cbcce5ebeec97cb71a3c4cb4b56db authored by Torsten Hothorn on 23 July 2007, 00:00:00 UTC, committed by Gabor Csardi on 23 July 2007, 00:00:00 UTC
1 parent 7554a8b
Raw File
Tip revision: e26e4aab1f2cbcce5ebeec97cb71a3c4cb4b56db authored by Torsten Hothorn on 23 July 2007, 00:00:00 UTC
version 0.6-5
Tip revision: e26e4aa
ToDoList

o       formula interface to wilcoxsign_test is brain damaged
        y ~ 1 must be OK
        

o       implement `pperm(x, q, lower.tail = TRUE)'

o       more checks on direct `ytrafo = foo' constructs

o       improve error messages

o       add checks on achieved alpha in confint (see wilcox.test changes by
        Thomas L)

o	some classes are the same in `coin' and `party': can they conflict?

o	maxstat_tests scales poorly for very large problems (number of obs)
        maybe we can look at each 2-sample problem separately?

        - unify min/maxprop arguments to something like `quantiles = c(...)'
          (either of length 2 or arbitrary)

o	compare multiple test procedures with multtest and add more checks,
        compare with Peter Westfalls example

        [done]

o	check spearman_test vs. cor.test

o	definition of two-sided p-values in ansari.test contradicts the one
        used here in some cases (-> regtest_2samples.R)

o	confint() after contrast_test:	how to check if ranks were used???
	labels of `contrMat' and direction of differences don't match

o	check storage.mode of all vars going into C code (MC)

o	add wilcoxon-gehan scores, check logrank scores!

o	check if trend tests for clustered data are part of the framework

o	maximally selected McNemar statistics -> Betensky, Biometrics, 2000

o	visualize deviations from H_0 for all problems (in a way
	motivated by shaded mosaicplots)

o	mh_test with weights

o	free W1 and W2 in `vandeWiel.c' in case of an error

o	enable confidence intervals in the presence of blocks or weights

o	check whats happening here

	d <- data.frame(y = rnorm(20), x = gl(2, 10))
	d$y[d$x == "1"] <- d$y[d$x == "1"] * 2

	wt <- ansari_test(y ~ x, data = d, di = "ex", conf.int = TRUE)
	pvalue(wt)

	confint(wt, level = 1 - pvalue(wt))  

o	Kurt: trafo as family of transformations (see glm(..., family,...)

o	should we have `distribution = "none"'?

back to top