r:basics
Differences
This shows you the differences between two versions of the page.
Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
r:basics [2017/09/25 01:19] – [Performing Vector Arithmetic] hkimscil | r:basics [2019/09/25 10:32] (current) – [Performing Vector Arithmetic] hkimscil | ||
---|---|---|---|
Line 156: | Line 156: | ||
[1] 11.49988 | [1] 11.49988 | ||
</ | </ | ||
+ | |||
+ | $$ r = \frac {\text{covariance (x, y)}} {sd(x) * sd(y)} $$ | ||
+ | |||
+ | < | ||
+ | > x <- c(0, | ||
+ | > y <- log(x+1) | ||
+ | > cor(x,y) | ||
+ | [1] 0.9068053 | ||
+ | > cov(x, | ||
+ | [1] 0.9068053 | ||
+ | > cov(x, | ||
+ | [1] 0.9068053 | ||
+ | |||
+ | </ | ||
+ | |||
< | < | ||
Line 178: | Line 193: | ||
</ | </ | ||
</ | </ | ||
+ | |||
+ | < | ||
+ | > dlist <- list(small, | ||
+ | > dlist | ||
+ | [[1]] | ||
+ | [1] 0.6739635 1.5524619 0.3250562 1.2143595 1.3107692 2.1739663 | ||
+ | [7] 1.6187899 0.8872657 1.9170283 0.7767406 | ||
+ | |||
+ | [[2]] | ||
+ | [1] 10.526448 | ||
+ | | ||
+ | |||
+ | [[3]] | ||
+ | | ||
+ | [7] 100.46707 | ||
+ | > lapply (dlist, | ||
+ | [[1]] | ||
+ | [1] 1.24504 | ||
+ | |||
+ | [[2]] | ||
+ | [1] 9.560325 | ||
+ | |||
+ | [[3]] | ||
+ | [1] 99.946 | ||
+ | > sapply(dlist, | ||
+ | [1] 0.5844025 0.9920282 0.8135503 | ||
+ | |||
+ | </ | ||
< | < | ||
Line 245: | Line 288: | ||
</ | </ | ||
+ | sequence ('' | ||
+ | < | ||
+ | x <- seq(-4, 4, length=10000) | ||
+ | y <- dnorm(x, mean=0, sd=1) | ||
+ | plot(x, y, type=" | ||
+ | |||
+ | </ | ||
====== Comparing Vectors ====== | ====== Comparing Vectors ====== | ||
< | < | ||
Line 376: | Line 426: | ||
====== Performing Vector Arithmetic ====== | ====== Performing Vector Arithmetic ====== | ||
+ | see [[:social network analysis]] | ||
+ | |||
< | < | ||
> w <- c(1, | > w <- c(1, | ||
Line 404: | Line 456: | ||
[1] -1.2649111 -0.6324555 | [1] -1.2649111 -0.6324555 | ||
</ | </ | ||
+ | |||
+ | <WRAP box help>get variance of v without using var() function. | ||
+ | </ | ||
< | < | ||
Line 434: | Line 489: | ||
| <- << | | <- << | ||
| ? | Help | Recipe 1.7 | | | ? | Help | Recipe 1.7 | | ||
- | |||
< | < | ||
Line 474: | Line 528: | ||
<WRAP box help> | <WRAP box help> | ||
fill values less than 2 with zeros in stu matrix | fill values less than 2 with zeros in stu matrix | ||
+ | < | ||
</ | </ | ||
+ | |||
+ | |||
====== Defining a Function ====== | ====== Defining a Function ====== | ||
< | < | ||
Line 501: | Line 558: | ||
+ | {{tag> statistics r "r basics" | ||
r/basics.1506271794.txt.gz · Last modified: 2017/09/25 01:19 by hkimscil