forked from daattali/shiny-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
90 lines (89 loc) · 4.96 KB
/
index.html
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
<!DOCTYPE html>
<html lang="en-US" xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Dean Attali's Shiny Server</title>
<style type="text/css">
body, html {
font-family: Helvetica, Arial, sans-serif;
background-color: #F5F5F5;
color: #222;
margin: 0;
padding: 0;
}
a {
text-decoration: none;
color: #0000EE;
}
a:hover {
text-decoration: underline;
}
#titleBar {
height: 80px;
background-color: #3475b4;
overflow: hidden;
border-bottom: 1px solid #3475b3;
-moz-box-shadow: 0px 0px 10px 3px #BBC;
-webkit-box-shadow: 0px 0px 10px 3px #BBC;
box-shadow: 0px 0px 10px 3px #BBC;
}
#titleBar #container {
margin-top: 14px;
}
#titleBar h1 {
margin: 0 auto .5em auto;
padding: .2em;
color: #EEE;
text-align: center;
}
#outer-content {
max-width: 910px;
margin-left: auto;
margin-right: auto;
}
#content {
margin: 1em auto 1em auto;
float: left;
}
.shiny-apps li {
margin-bottom: 8px;
}
</style>
</head>
<body>
<div id="titleBar">
<div id="container">
<h1>Welcome to Dean Attali's Shiny Server!</h1>
</div>
</div>
<div id="outer-content">
<div id="content">
<h3>Awesome Shiny apps currently hosted on this server</h3>
<ul class="shiny-apps">
<li><strong><a href="./shinyjs-demo/">shinyjs demo</a></strong> - <a href="https://github.com/daattali/shinyjs">shinyjs</a> is an R package I built that makes it easy to perform common JavaScript operations in Shiny apps. This demo allows you to experiment with different shinyjs functions.</li>
<li><strong><a href="./ggExtra-ggMarginal-demo/">ggExtra::ggMarginal() demo</a></strong> - a demo of how my package <a href="https://github.com/daattali/ggExtra">ggExtra</a> can be used to add marginal plots to ggplot2.</li>
<li><strong><a href="./colourInput/">colourInput demo</a></strong> - a demo of using the colourInput input control (available from <a href="https://github.com/daattali/shinyjs">shinyjs</a>) in Shiny apps to allow users to select colours.</li>
<li><strong><a href="./persistent-data-storage/">Persistent data storage with Shiny</a></strong> - supplement to my <a href="http://deanattali.com/blog/shiny-persistent-data-storage/">blog post</a> that shows how store and retrieve data in Shiny apps</li>.
<li><strong><a href="./mimic-google-form/">Mimicking a Google Form with a Shiny app</a></strong> - supplement to my <a href="http://deanattali.com/2015/06/14/mimicking-google-form-shiny/">blog post</a> that shows how to create forms and save/load submissions with shiny.</li>
<li><strong><a href="./cancer-data/">Cancer data</a></strong> - interactively explore data about cancer incidences/deaths in the US</li>
<li><strong><a href="./rbloggers-twitter/">Analyzing R-Bloggers' posts via Twitter</a></strong> - supplement to my <a href="http://deanattali.com/2015/05/17/analyzing-rbloggers-posts-via-twitter/">blog post</a> that explores the success of all Rbloggers posts on Twitter.</li>
<li><strong><a href="./bcl/">BC Liquor Store prices</a></strong> - Simple app that is built as part of a <a href="http://deanattali.com/blog/building-shiny-apps-tutorial">Shiny tutorial</a> I've written. The app lets you find what to get from the liquor store based on filters you choose.</li>
</ul>
<h3>Other Shiny apps that exist here</h3>
<ul class="shiny-apps">
<li><strong><a href="./shinyjs-basic/">shinyjs basic app</a></strong> - a very basic Shiny app showing how <a href="https://github.com/daattali/shinyjs">shinyjs</a> functions can be used together in a simply app.</li>
<li><strong><a href="./request-basic-info/">Basic info form</a></strong> - a simple form that we used in a course to collect some basic information about students (example of how to use forms to collect data from a shiny app).</li>
<li><strong><a href="./peer-review/">Peer review form</a></strong> - a marking sheet that we used in a course for students to peer-review other students' assignments (example of how to use forms to collect data from a shiny app).</li>
<li><strong><a href="./loading-screen/">Loading screen demo</a></strong> - an example of how to implement a simple loading screen in a Shiny app.</li>
</ul>
<br/>
If you want to host a Shiny Server and/or RStudio Server yourself, <a href="http://deanattali.com/2015/05/09/setup-rstudio-shiny-server-digital-ocean/">here is a very well-received tutorial I've written on doing that</a>.
<br/><br/>
The code for this Shiny Server, including all the apps inside, is <a href="https://github.com/daattali/shiny-server">available on GitHub</a>.
<br/><br/>
<a href="http://daattali.com">< Back to main site</a>
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
<a href="http://daattali.com:4151">admin</a>
</div>
</div>
</body>
</html>