-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathch09-motion.Rmd
90 lines (78 loc) · 2.55 KB
/
ch09-motion.Rmd
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
---
title: Chapter 9
output: distill::distill_article
---
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
<style>
.zoomDiv {
opacity: 0;
position: fixed;
top: 50%;
left: 50%;
z-index: 50;
transform: translate(-50%, -50%);
box-shadow: 10px 10px 50px #888888;
max-height:100%;
}
.zoomImg {
width: 100%;
}
</style>
<script type="text/javascript">
$(document).ready(function() {
$('body').prepend("<div class=\"zoomDiv\"><img src=\"\" class=\"zoomImg\"></div>");
// onClick function for all plots (img's)
$('img:not(.zoomImg)').click(function() {
$('.zoomImg').attr('src', $(this).attr('src'));
$('.zoomDiv').css({opacity: '1', width: '55%'});
});
// onClick function for zoomImg
$('img.zoomImg').click(function() {
$('.zoomDiv').css({opacity: '0', width: '0%'});
});
});
</script>
```{r setup, echo=FALSE, warning=FALSE, message=FALSE}
knitr::opts_chunk$set(R.options = list(width = 150))
library(knitr)
source("R/chapter_figs.R")
```
# Visualizing Time and Space <img src="images/cartoons/muybridge.png" align="right" height="100px" />
<div class="chapterintro"><div class="chapterprelude">
#### Synopsis {-}
The recent history of data visualization is much harder to characterize because
innovations have been so varied, and have occurred at an accelerated pace and
have appeared across a wider range of disciplines.
Among the many threads that could be traced, two general categories stand out; these have made
data graphics far more powerful and accessible than ever before.
First, graphical methods have become increasingly dynamic and interactive,
capable of showing changes over time by animation and changing the nature of a graph
from a static image to one that a viewer can directly manipulate, zoom or query.
Second, the escape from flatland has been continued, with a variety of new approaches to
understanding data in ever higher dimensions.
</div>
<div class="chaptercontents">
#### Chapter contents {-}
* The Laws of Motion
* The Horse in Motion
+ A Trick of the Eye
* Étienne-Jules Marey and a Science of Visualizing Time and Motion
+ La Méthode Graphique
+ Chronophotography
+ Falling cats
* Computer Graphics Animation
* Animated Algorithms
+ The MDS movie
+ Color similarity
+ The Monte Carlo Method
+ RANDU
* Travels in High-D Space
+ Diabetes classification
* Hardware and Software
+ Software
* Telling Stories with Animated Graphics
</div></div>
## Selected Figures
```{r results="asis", echo=FALSE, message=FALSE, warning=FALSE}
do_chapter(9)
```