-
Notifications
You must be signed in to change notification settings - Fork 0
/
app.R
66 lines (60 loc) · 2.65 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
library(shinydashboard)
ui <- dashboardPage(
dashboardHeader(title = "Welcome!"),
dashboardSidebar(
sidebarMenu(
menuItem("Personal Info", tabName = "dashboard", icon = icon("dashboard")),
menuItem("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 Modelling"),
tags$li("Skiing"),
tags$li("Machine Learning"),
tags$li("Russian Literature"),
tags$li("Computational Anatomy"),
tags$li("Badminton")
),
tags$h2("Contact"),
tags$hr(style = "border-color: yellow;"),
tags$p("Office: 6730 MSC"),
tags$h2("Education:"),
tags$hr(style = "border-color: green;"),
tags$ul(
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=1UghSNz6FRBew3swiZWTNJHLbv3lSMOVg","My CV")
),
# Second tab content
tabItem(tabName = "widgets",
h2("Specific Research So far"),
tags$hr(style = "border-color: yellow;"),
tags$ul(
tags$li("Heat Kernel Smoothing"),
tags$li("Topological data tools"),
tags$li("Mathematical tools for big data")
),
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"))
)
)
)
)
server <- function(input, output) {
}
shinyApp(ui, server)