-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
191 lines (157 loc) · 7.37 KB
/
index.html
File metadata and controls
191 lines (157 loc) · 7.37 KB
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
<!DOCTYPE html>
<html>
<head>
<title>Schematix</title>
<meta charset="utf-8" />
<meta content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" name="viewport">
<!-- CSS
================================================== -->
<!-- Bootstrap 3-->
<link href="css/bootstrap.min.css" rel="stylesheet" media="screen">
<!-- Google Fonts -->
<link href='http://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,600,700,900,200italic,300italic,400italic,600italic,700italic,900italic|Roboto+Condensed:300italic,400italic,700italic,400,300,700' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Roboto+Condensed:300italic,400italic,700italic,400,300,700' rel='stylesheet' type='text/css'>
<!-- Template Styles -->
<link href="css/style.css" rel="stylesheet" media="screen">
</head>
<body>
<!-- NAVBAR
================================================== -->
<nav class="navbar navbar-default" role="navigation">
<div class="container">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-ex1-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!--Replace text with your app name or logo image-->
<a class="navbar-brand" href="#">Schematic Fission</a>
</div>
<div class="collapse navbar-collapse navbar-ex1-collapse">
<ul class="nav navbar-nav">
<li><a onclick="$('header').animatescroll({padding:71});">Top</a></li>
<li><a onclick="$('.purchase').animatescroll({padding:71});">Introduction</a></li>
<li><a onclick="$('.detail').animatescroll({padding:71});">About</a></li>
<li><a href="http://104.236.192.178:8888/app">Login</a></li>
<li><a href="https://github.com/schematicfission">Github</a></li>
</ul>
</div>
</div>
</nav>
<!-- HEADER
================================================== -->
<header>
<div class="fission">
<video autoplay>
<source src="video/fissionvid.webm" type="video/webm">
</video>
</div>
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Schematix</h1>
<h2 style="margin-bottom:-50px;">An explosive normalization tool</h2>
<img src="img/logo.svg">
</div>
</div>
</div>
</div>
</header>
<!-- PURCHASE
================================================== -->
<section class="purchase">
<div class="container">
<div class="row">
<div class="col-md-offset-2 col-md-8">
<h1>A Quick Introduction</h1>
<p class="lead">Schematix is a tool for those who face the problem of Data Wrangling: the art, or science, or conforming your data to a desired format.
Data analysis tools are extremely high in demand. However, one
known issue with data analysis is an inconsistency in formatting
between different data sources. Is my data compatible with the
analysis tool I’m trying to use? This problem is only exacerbated
when data is represented inconsistently between various mediums.
Take for example a team of two, each trying to represent
the same structured data. Let’s say that one person decided to
create an Excel spreadsheet while the other wrote a Python script
to populate a CSV file. What if they chose inconsistent names of
attributes for enumerated types (i.e. “female” vs. “f” vs. “Female”)?
What if one person decided to leave some cells blank,
while the other didn’t? What if the person entering into Excel
had typos that were corrupting various aggregation results? Suddenly,
the team’s simple task of trying to merge and aggregate
their data with some analysis tool becomes much more complicated.</p>
</div>
</div>
</div>
</section>
<!-- PAYOFF
================================================== -->
<section class="payoff">
<div class="container">
<div class="row">
<div class="col-md-12">
<h1>Schematic Fission enables you to transform spreadsheet data into a database schema by inferring functional dependencies, turning them into SQL foreign keys.</h1>
</div>
</div>
</div>
</section>
<!-- DETAILS
================================================== -->
<section class="detail">
<div class="container">
<div class="row">
<div class="col-md-12">
<div id="carousel-example-generic-2" class="carousel slide">
<!-- Wrapper for slides -->
<div class="item active">
<div class="row">
<div class="col-sm-12 col-md-offset-1 col-md-6">
<h1>About</h1>
<button type="button" onclick="alert('Hello world!')">Register</button>
<p>Schematic fission is a tool to help users easily and intuitively migrate their data from non-relational, spreadsheet-like data management tools, such as Excel, to relational databases. Our tool is inspired by and heavily uses the Stanford Visualization Group’s DataWrangler, an open source project for “wrangling” semi-structured CSV data into a giant spreadsheet format. Our tool takes this a step further and helps users detect functional dependencies that are definitely present in their data, infer functional dependencies that may be present in the data, and normalize the data based on those functional dependencies into a traditional relational schema. By the end, the user can play around with their normalized schema in our web interface (including full query support) and export the necessary SQL statements to create their own database locally.</p>
</div>
<div class="col-sm-12 col-md-5">
<img src="img/screen.png">
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</section>
<!-- FEATURES
================================================== -->
<!--
<section class="features">
<div class="container">
<div class="row">
<div class="col-md-4">
<div class="circle"><i class="icon-bookmark"></i></div>
<h2>Quick & Easy Setup</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.</p>
</div>
<div class="col-md-4">
<div class="circle"><i class="icon-keypad"></i></div>
<h2>Parallax Scrolling</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.</p>
</div>
<div class="col-md-4">
<div class="circle"><i class="icon-like"></i></div>
<h2>Responsive Design</h2>
<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna.</p>
</div>
</div>
</div>
</section>
-->
<!-- JAVASCRIPT
================================================== -->
<script src="js/jquery.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/animatescroll.js"></script>
<script src="js/scripts.js"></script>
<script src="js/retina-1.1.0.min.js"></script>
</html>