-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcavendish.html
More file actions
37 lines (35 loc) · 1.55 KB
/
Copy pathcavendish.html
File metadata and controls
37 lines (35 loc) · 1.55 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>WWP Visualizations</title>
<script type="module" src="cavendish.js"></script>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<div class="wrapper">
<main>
<figure id="container">
<header>
<h1 class="title">Exploring Principal Component Analysis with the Women Writers' Project - Margaret Cavendish</h1>
<p id="info">This visualization shows the plotting of Margaret Cavendish's texts by their first and second principal component. Users can toggle the different genres to filter the data.
Hovering over a point will bring up more information in a tooltip. Click the reset button to reset all toggled checkboxes.
</p>
</header>
</figure>
<div class="legends">
<fieldset class="control" id="genre-legend">
<legend>Genre</legend>
<p>Use this field to select or mute the different Genres.</p>
</fieldset>
<button id="reset-button">Reset</button>
</div>
</main>
</div>
<footer>
<p> Created by Joel Lee from the <a href="https://dsg.northeastern.edu" target="_blank">Digital Scholarship Group</a> at <a href="https://library.northeastern.edu/" target="_blank">Northeastern University Library</a>.</p>
</footer>
</body>
</html>