-
Notifications
You must be signed in to change notification settings - Fork 3
/
FiferDemo.R
255 lines (214 loc) · 7.74 KB
/
FiferDemo.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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
##################################################
##################################################
##################################################
##################################################
# INSTALLATION
##################################################
##################################################
##################################################
##################################################
### first install devtools so I can use their install_github function
install.packages("devtools")
require(devtools)
### install fifer with the install_github function
devtools::install_github("fifer", username="dustinfife")
require(fifer)
##################################################
##################################################
##################################################
##################################################
# BROWSE THE PACKAGE
##################################################
##################################################
##################################################
##################################################
### look at functions in the fifer package
contents("fifer")
### pull up vignette
vignette("fifer_package")
##################################################
##################################################
##################################################
##################################################
# DATA MANIPULATION
##################################################
##################################################
##################################################
##################################################
### load the fake medical data
data(fakeMedicalData)
### look at first several rows of fakeMedicalData
head(fakeMedicalData)
### DEMONSTRATE THE r (range) FUNCTION
#################
#################
#################
## see documentation
?r
### extract column indices between B_regs_10A and B_regs_9E
bregs = r("B_regs_10A", "B_regs_9E", data.names=names(fakeMedicalData))
bregs
### extract column names instead
bregs = r("B_regs_10A", "B_regs_9E", data.names=names(fakeMedicalData), names=T)
bregs
### DEMONSTRATE THE make.null FUNCTION
#################
#################
#################
### see documentation
?make.null
### extract only demographics columns and bregs columns
newData = make.null("ID", "gender", "ethnicity", "age", "disease",
bregs,
data=fakeMedicalData,
keep=TRUE)
head(newData)
### we could instead drop everything after bregs
newData2 = make.null(
r("BCI_10A", "TNF_9E", data.names=names(fakeMedicalData)),
data=fakeMedicalData, keep=FALSE)
dim(newData)
dim(newData2)
### DEMONSTRATE THE excelMatch FUNCTION
#################
#################
#################
### see documentation
?excelMatch
#### extact the variable names corresponding to Excel Columns AA, CD, and FF
excel.names = excelMatch("AA", "CD", "FF", names=names(fakeMedicalData))
excel.names
### or, we can extract the column indices instead
### (note it doesn't require names in original dataset)
excel.names = excelMatch("AA", "CD", "FF", n=length(names(fakeMedicalData)))
excel.names
### now subset the matrix to just those using make.null
new.dat = make.null(excel.names, data=fakeMedicalData, keep=T)
head(new.dat)
### DEMONSTRATE THE subsetString FUNCTION
#################
#################
#################
### see documentation
?subsetString
#### generate random data (normally this would come from importing a file)
data = data.frame(matrix(rnorm(10*3), ncol=3))
names(data) = c("ANA.by.IFA.0.neg.40...pos",
"dsDNA....Calculated.",
"IgG..10.neg..10.19.low..20.89.mod...90.high")
#### print the names (so we can see how messy they are)
head(data)
#### rename the column names, taking only the first element
names(data) = subsetString(names(data), sep=".", position=1)
names(data)
#### be careful!! The pattern may not be consistent across datasets
##################################################
##################################################
##################################################
##################################################
# DATA ANALYSIS
##################################################
##################################################
##################################################
##################################################
### DEMONSTRATE THE missing.vals FUNCTION
#################
#################
#################
### see documentation
?missing.vals
?missingVals
### summarize missing values
missing.vals(fakeMedicalData)
missing.vals(na.omit(fakeMedicalData))
### DEMONSTRATE THE demographics FUNCTION
#################
#################
#################
### see documentation
?demographics
### summarize missing values
demographics(disease~age + gender + ethnicity, data=fakeMedicalData, latex=FALSE)
### DEMONSTRATE THE make.formula FUNCTION
#################
#################
#################
### see documentation
?make.formula
#### list all the variables I want to use using the r function
predictors = r("Glucose_10A", "Glucose_9E", names(fakeMedicalData), names=T)
### make sure it worked!
predictors
### now write the formula
formula = make.formula("disease", predictors)
### and look at it
formula
### DEMONSTRATE THE univariate.tests FUNCTION
#################
#################
#################
### see documentation
?univariate.tests
### compute significance tests for each variable in dataset but the ID column
p.values = univariate.tests(dataframe=fakeMedicalData, exclude.cols=1, group="disease") #### adjust those p-values using FDR (false discovery rate)
p.adjusted = p.adjust(p.values, method="fdr")
#### display only those that exceed statistical significance
p.adjusted[p.adjusted<.05]
##################################################
##################################################
##################################################
##################################################
# PLOTTING
##################################################
##################################################
##################################################
##################################################
#### plot the best five biomarkers
best.five = names(sort(p.adjusted)[1:5])
### prepare the layout
par(mfrow = c(3,2)) ## old way
auto.layout(5) ## new way
for (i in 1:length(best.five)){
### set my favorite defaults
par1()
### make the formula
formula = make.formula(best.five[i], "disease")
### plot density plots
densityPlotR(formula, data=fakeMedicalData, main="")
}
### do prism-like plots with significance bars
auto.layout(4)
for (i in 1:4){
### set different defaults
par2()
### make the formula
formula = make.formula(best.five[i], "disease")
### plot prism plots
prism.plots(formula, data=fakeMedicalData)
### show significance bars
plotSigBars(formula, data=fakeMedicalData, type="tukey")
}
par1()
#### color code according to disease status
colors = string.to.color(fakeMedicalData$disease, colors=c("blue", "red"))
#### change symbol according to disease status
pch = as.numeric(string.to.color(fakeMedicalData$disease, colors=c(15, 16)))
#### plot it
plot(fakeMedicalData[,best.five[1]], fakeMedicalData[,best.five[2]], col=colors,
pch=pch, xlab = best.five[1], ylab=best.five[2])
legend("bottomright", c("Case", "Control"), pch=c(15,16),
col=c("blue", "red"), bty="n")
###### make the ... for the densityPlotR
#### show off spearman.plot
x = rnorm(100)^2
y = rnorm(100)^2
### induce a correlation of .6 (approximately) with choleski decomp
cor = matrix(c(1, .6, .6, 1), nrow=2)
skewed.data = cbind(x,y)%*%chol(cor)
names(skewed.data) = c("x", "y")
### show original plot
par2()
plot(skewed.data, xlab="x", ylab="y")
#### now show spearman plot
par2()
spearman.plot(skewed.data, xlab="rank(x)", ylab="rank(y)", pch=16)