-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathapp.R
94 lines (86 loc) · 4.89 KB
/
app.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
library(rsconnect)
library(shinydashboard)
rsconnect::setAccountInfo(name='tiankangxie',
token='8EFE56CA21388238D11939516387EFDC',
secret='RCPjWqkRhpd5RHok2HMUzeDNroO0/BXMWUk//b5y')
#setwd("C:\\Users\\ssxxz\\Documents\\shinyapps\\app1")
ui <- dashboardPage(
dashboardHeader(title = "Welcome!"),
dashboardSidebar(
sidebarMenu(
menuItem("Personal Info", tabName = "dashboard", icon = icon("dashboard")),
menuItem("Research Interests", tabName = "widgets1",icon = icon("th")),
menuItem("Past Research", tabName = "widgets", icon = icon("th"))
)
),
dashboardBody(
tabItems(
# First tab content
tabItem(tabName = "dashboard",
tags$img(src = "img1.jpg",height = 300, width = 450),
tags$h2("Welcome to Tiankang's Space"),
tags$hr(style = "border-color: blue;"),
tags$p(tags$p("My name is Tiankang Xie. This is my virtual space and I'm glad that you found it")),
tags$h2("About Me"),
tags$hr(style = "border-color: red;"),
tags$p("Some of my general interests include:"),
tags$ul(
tags$li("Mathematical Algorithmic Design"),
tags$li("Computational Genomics"),
tags$li("Machine Learning"),
tags$li("Image Analysis"),
tags$li("Russian Literature"),
tags$li("Badminton")
),
tags$h2("Contact"),
tags$hr(style = "border-color: black;"),
tags$p("Office: 6730 MSC"),
tags$h2("Education:"),
tags$hr(style = "border-color: green;"),
tags$ul(
tags$li("Gradudate Student 2018 Quantitative Biology Sciences, Dartmouth College"),
tags$li("B.S. 2018 Mathematics & Statistics, ",tags$a(href = "www.wisc.edu","University of Wisconsin-Madison")),
tags$li("High School Diploma. 2014, ",tags$a(href = "https://www.szzx1000.com", "Suzhou High School of Jiangsu Province"))
),
tags$h2("Personal Resume"),
tags$hr(style = "border-color: orange;"),
tags$a(href="https://drive.google.com/open?id=1hkGkiUYPqGvumT8ympVlpALcHI6vhP0w","My CV")
),
tabItem(tabName = "widgets1",
h2("General Statement"),
tags$hr (style = "border-color: red;"),
tags$ul(
tags$li("My current research goal is to develop an integrative diagnosis system for early cancer, both from the micro and macro levels. From the micro level, I wish to incorporate genomics data, which includes DNA methylation and histone modifications, to investigate which of these modifications can lead to the development of malignant tumors. From the macro level, I wish to use machine learning, especially deep learning methods to improve the information gained from basic X-ray screenings."),
tags$br(),
tags$li("Another important part of my research goal is to also to develop computational algorithms to more efficiently perform statistical calculations on large data sets. I have realized that a significant bottleneck for current genomic studies is that data size is too large and is too time-consuming. It is wasteful to take in the whole gigantic dataset only aiming to get some basic statistics. If we only want the statistical properties we can cleverly utilize Mathematical projections or Mathematical algorithms to speed up the calculations.")
),
tags$h2("My Motto"),
tags$hr(style = "border-color: green;"),
tags$h4(tags$em("I will never rest until cancer has been cured by humans. ---- By Tiankang Xie"))
),
# Second tab content
tabItem(tabName = "widgets",
h2("Undergraduate Research"),
tags$hr(style = "border-color: green;"),
tags$ul(
tags$li("Mathematical Algorithm Designs"),
tags$li("Image Analysis"),
tags$li("Topological tools for data analysis")
),
tags$p("Mentor for B.S: Prof. Moo. K Chung"),
tags$p(tags$a(href="http://www.stat.wisc.edu/~mchung/","See what my mentor is doing!")),
tags$p(tags$a(href="https://drive.google.com/open?id=1LP70EbNywAm3DFcNl9y9vAgN2xgSFowf","See my Research Paper for Mathematical tools"),
tags$h2("Graduate Research"),
tags$hr(style = "border-color: orange;"),
tags$ul(
tags$li("Cancer genomics, especially DNA methylation")
)
)
)
)
)
)
server <- function(input, output) {
}
shinyApp(ui, server)
#deployApp()