-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathdemo_nick.R
64 lines (49 loc) · 1.6 KB
/
demo_nick.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
#Playing around with R
#Made a change on github
#R has variables
#Variables associate values with names
x <- 4
#Assignment changes the state of R
#We can also change state by loading libraries
library(tidyverse)
#We can query the "state of R" using the console
#install.packages("tidylog")
library(tidylog)
#We know that Variables in R are values that have names
#We can change the value
metadata <- read_tsv("data/sra_metadata/SraRunTable.txt")
metadata_factor <- read.table(file = "data/sra_metadata/SraRunTable.txt",
sep = "\t",header = TRUE)
#Variables in R have names
#The values associated have "type"
# and "shape"
#To get "slices" of the data we can use the subset operators
insert_size <- pull(metadata,InsertSize_l)
#
lib_name <- pull(metadata,Library_Name_s)
lib_name_factor <- pull(metadata_factor,Library_Name_s)
data_vector <- as.factor(c("1","2","MISSING DATA!!!"))
str_detect(lib_name,"ZDB")
#There is another way of changing the value of a variable
#The subset operator '[' can take a number as input
insert_size[1]
insert_size[1:10]
insert_size[10:1]
# We can also use "logical vectors" to subset data
insert_is_zero <- insert_size==0
insert_isnt_zero <- insert_size != 0
insert_size[insert_is_zero]
insert_size[insert_isnt_zero]
#subsetting changes the "shape"
#of data without changing the type
new_vector <- c(a=TRUE,
b=FALSE,
c=TRUE)
#We can also subset our data by name
#names are strings
new_vector["b"]
#The following three are equivalent
new_vector[c("a","c")]
new_vector[c(1,3)]
new_vector[c(TRUE,FALSE,TRUE)]
lib_name[insert_size != 0]