UniTO/anno3/avrc/assignments/dataviz/slides/explanations.html

128 lines
3.8 KiB
HTML
Raw Normal View History

2019-12-05 16:44:41 +01:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title></title>
<meta name="author" content="Hakim El Hattab">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="css/reset.css">
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css" id="theme">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/monokai.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-background="#fff" data-markdown>
## Social Network Usage
This plot compares the frequency of posts by two politicians **over a year**.
</section>
<section data-background="#fff" data-markdown>
## Word cloud
Displays the most used words over **all posts** of a year, or **every post** considered.
</section>
<section data-background="#fff" data-markdown>
## Hottest cities
An heatmap to visualize which cities have been in the spotlight.
Computed over **all posts** of a year or **every post** considered.
Geolocation data included as well.
</section>
<section data-background="#fff" data-markdown>
## Hottest hours
Do politicians ever sleep? An heatmap describing the busiest hours of social media usage.
</section>
<section data-background="#fff" data-markdown>
## Common topics
Stacked bar plot comparing the most influential topics **shared** by two politicians.
Computed over **all posts** of a year or **every post** considered.
</section>
<section data-background="#fff" data-markdown>
# 🔥
🤔 Have you ever wondered how your politicians use Emojis? 🤷🏾
Find out the most used emojis and you can be cool too. 🤣
</section>
</div>
</div>
<script src="js/reveal.js"></script>
<script>
Reveal.initialize({
controls: true,
progress: true,
center: true,
hash: true,
transition: 'slide', // none/fade/slide/convex/concave/zoom
// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'plugin/highlight/highlight.js', async: true },
{ src: 'plugin/search/search.js', async: true },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
]
});
</script>
</body>
<script>
window.onload = function() {
document.getElementsByClassName("progress")[0].style.display = "none";
document.getElementsByClassName("navigate-left")[0].style.display = "none";
document.getElementsByClassName("navigate-right")[0].style.display = "none";
}
</script>
<style>
.navigate-right {
display: none;
}
.navigate-left {
display: none;
}
</style>
</html>