-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
44 lines (44 loc) · 2.05 KB
/
index.html
File metadata and controls
44 lines (44 loc) · 2.05 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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width" />
<link rel="canonical" href="https://analyze.li/">
<link rel="icon" type="image/png" href="favicon-32x32.png" sizes="32x32" />
<link rel="icon" type="image/png" href="favicon-16x16.png" sizes="16x16" />
<link rel="stylesheet" href="css/main.css" />
<title>Analyze.li - Online data analysis</title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-7770107-3"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-7770107-3');
</script>
</head>
<body>
<header>
<div class="wrapper">
<img class="logo" alt="Analyze.li" src="images/logo.png"/ style="margin-bottom: 0px;">
<p style="font-size: 9px; margin-top: 0px; padding-top: 0px">by StatSim</p>
<h1>Data analysis in the browser</h1>
<p>
Analyze.li is a free, open-source web app for data exploration and analysis. All information is processed locally in the browser using your machine memory. The app loads and processes data as a text stream (piece by piece, line by line), so it's possible to work with large files without consuming much RAM.
</p>
<p class="features">
<b>Supported formats:</b> CSV, JSON, XML<br>
<b>Data transform:</b> Structure, Filter<br>
<b>Statistics:</b> Mean, Median, Std, Variance, Min/Max etc.<br>
</p>
<a href="/analyze" class="cta">Open web app</a>
<div class="social">
<a href="https://twitter.com/analyzeli" class="icon"><img src="images/twitter.svg"/></a>
<a href="https://www.facebook.com/analyzeli" class="icon"><img src="images/facebook.svg"/></a>
<a href="https://github.com/analyzeli" class="icon"><img src="images/github.svg"/></a>
</div>
<br><br>
</div>
</header>
</body>
</html>