Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Korelacja i odtwarzalność wyników #3

Open
pbiecek opened this issue Feb 21, 2016 · 0 comments
Open

Korelacja i odtwarzalność wyników #3

pbiecek opened this issue Feb 21, 2016 · 0 comments

Comments

@pbiecek
Copy link
Owner

pbiecek commented Feb 21, 2016

Krótka uwaga do Przewodnika:
Na str. 273 jest ciekawy przykład: test korelacji Pearsona vs. test korelacji Spearmana.
Ponieważ dobrą praktyką jest odtwarzalność wyników to warto podać ziarno generatora liczb losowych.

-------------------------------- R:
set.seed(3133); x <- rlnorm(50);
set.seed(3138); y <- x+rlnorm(50);
cor.test(x,y);

cor.test(x,y,method="spearman");

Może warto w tym miejscu zwrócić uwagę na:
[] gdy występują rangi wiązane test Spearmana nie może obliczyć wartości dokładnej p-wartości.
[
] alternatywy - coin::spearman_test, pspearman::spearman.test.
[*] test - energy::dcor.ttest. Wartości mogą się powtarzać, wykrywa on nie tylko liniową korelacje ale także nieliniowe związki.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant