-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
102 lines (81 loc) · 4.16 KB
/
Copy pathindex.html
File metadata and controls
102 lines (81 loc) · 4.16 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Emotion qualia structure of 75 videos</title>
<!-- .css file -->
<link rel="stylesheet" href="style.css">
<!-- Plotly.js -->
<script src="plotly-2.32.0.min.js"></script>
<script src='https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.17/d3.min.js'></script>
<!-- Import pure.css -->
<link rel="stylesheet" href="https://unpkg.com/purecss@2.0.3/build/pure-min.css"
integrity="sha384-cg6SkqEOCV1NbJoCu11+bm0NvBRc8IYLRGXkmNrqUBfTjmMYwNKPWBTIKyw9mHNJ" crossorigin="anonymous">
<meta name="viewport" content="width=device-width, initial-scale=1">
</head>
<body>
<div class="page">
<div class="pure-g">
<div class="pure-u-1-1">
<h1>Emotion Qualia Structure of 75 Videos in 2D Space</h1>
<p>
The emotion qualia structure of 75 emotion-evocative videos, estimated from the mean similarity matrix of 505 participants, is visualized using 2D metric multidimensional scaling (MDS). <br><br>
Each image represents a unique video, where the proximity between images reflects the similarity in emotional experiences reported by participants. <br><br> All 75 videos can be founded in the "<a href="https://github.com/ErronLLP/plotly/tree/0e3136a9a81262c0d1ef8425a65af843ba3316a2/data/videos">video</a>" folder.
</p>
<figure>
<img src="mds.jpg" alt="Emotion Qualia Structure in 2D" style="width:100%">
</figure>
</div>
</div>
<!-- pure grid group 1 -->
<div class="pure-g">
<div class="pure-u-1-1">
<h1>Emotion Qualia Structure of 75 Videos in 3D Space</h1>
</div>
<div class="pure-u-2-5">
<p>
1. The representation of the emotion qualia structure, estimated from the mean similarity matrix of 505 participants by 3D-MDS.<br><br>
2. Each point represents one video, with proximity between points reflecting the reported similarity in emotional experience.
</p>
</div>
<div class="pure-u-1-7"></div>
<div class="pure-u-2-5">
<p>
3. Points are color-coded based on emotional VALENCE or AROUSAL, with data from Cowen & Keltner (2017). High values represent positive emotions, while low values indicate negative emotions.<br><br>
4. Clustering reveals that videos with similar VALENCE tend to group together, though this pattern is less pronounced for AROUSAL.
</p>
</div>
</div>
<div class="container">
<div id="myDiv"><!-- Plotly chart will be drawn inside this DIV --></div>
<p>You can interact with this plot by dragging the mouse to rotate the structure; hover the cursor over points to see more information; select valence/arousal from middle-top's drag-down list to encode colors. </p>
</div>
<script src="plot_all.js"></script>
<!-- end pure grid group -->
<!-- pure grid group 2 -->
<div class="pure-g">
<div class="pure-u-1-1">
<h1>Emotion qualia structure of typical and alexithymic participants</h1>
</div>
</div>
<div class="pure-g">
<div class="pure-u-1-2">
<div class="container">
<div id="myDiv2"><!-- Plotly chart will be drawn inside this DIV --></div>
</div>
</div>
<div class="pure-u-1-2">
<div class="container">
<div id="myDiv3"><!-- Plotly chart will be drawn inside this DIV --></div>
</div>
</div>
</div>
<script src="plot_T_A_600_comparison_valence.js"></script>
<script src="plot_T_A_600_comparison_arousal.js"></script>
<div class="pure-u-1-1">
<p>Edited by Lipeng Lin: lipeng.lin@monash.edu</p>
</div>
<!-- end pure grid group -->
</div>
</body>
</html>