-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathVisualization1.html
More file actions
123 lines (104 loc) · 5.48 KB
/
Visualization1.html
File metadata and controls
123 lines (104 loc) · 5.48 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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
<!-- Define HTML Structure : Website Title: Tweet-er; Indicate links to he latest Bootstrap CDN 4.1.3 and JavaScript Library -->
<!DOCTYPE html>
<html lang="en">
<head>
<title>Visualize</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.12.4/jquery.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>
<link rel="stylesheet" href="WebVisualization.css">
<style>
.container-fluid-1 {
padding-top: 60px;
/* padding-bottom: 70px; */
}
</style>
</head>
<body>
<!-- The block of HTML Code below does the following -
1. Bootstrap Component for Navigation Bar is used below. The inline styling is used to change font color; background color, and alignment.
2. Nav Bar Toggler/Button is used to ensure responsive behavior for various screen sizes.
3. Drop Down Toggle is used for Visualize Item.-->
<nav class="navbar navbar-default navbar-fixed-top">
<div class="container-fluid">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#myNavbar">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="index.html">Visualize!</a>
</div>
<div class="collapse navbar-collapse" id="myNavbar">
<ul class="nav navbar-nav navbar-right">
<li class="dropdown">
<a class="dropdown-toggle" data-toggle="dropdown" href="Visualization1.html">Visualization
<span class="caret"></span>
</a>
<ul class="dropdown-menu">
<li><a href="Visualization1.html">Sentiment Analysis</a></li>
<li><a href="Visualization2.html">Tweet Analysis</a></li>
<li><a href="Visualization3.html">Twitter Share</a></li>
<li><a href="Visualization4.html">Twitter Volume</a></li>
</ul>
</li>
<li><a href="Compare.html">Compare</a></li>
<li><a href="GetData.html">Get Data</a></li>
</ul>
</div>
</div>
</nav>
<!-- The block of HTML Code below does the following -
1. Defines the grid/container[1-10-1] and describes the content in the form of <p> elements.
2. Inline styling is used to change font color; background color, and alignment.-->
<div class="container-fluid-1 text-center">
<div class="row content">
<div class="col-sm-1">
</div>
<div class="col-sm-10 text-left">
<h2>Sentiment Analysis</h2>
<p style="text-align: justify;"> The tweet polarity, as one can observe, ranges from -1 to 1. And their significance ... -1 indicates negative sentiment/tone in tweets, 1 indicates positive sentiment/tone in tweets, and 0 indicates neutral sentiment/tone in tweets.
The influencers with the most tweets, as observed, came from economists and/or politicians. The influencers with the most followers tend to come from the Musician genre.
The top influencers from our data set <em>[Katy Perry, Barack Obama, Taylor Swift,Lady Gaga, Ellen show] </em>portrayed a neutral to positive tone through their tweets.
</p>
<hr>
</div>
<div class="col-sm-1">
</div>
</div>
</div>
<!-- The block of HTML Code below does the following -
1. Defines a container to hold the h3 element-->
<div class="container">
<h3 style="text-align: center; color: blue"><em>Visualizations</em></h3>
</div>
<!-- The block of HTML Code below does the following -
1. Defines a container to hold the jumbotron and images underneath it.
2. Inline styling is used to change font color; background color, and alignment. -->
<div class="container">
<div class="jumbotron">
<div class="row content">
<div class="col-sm-3 thumbnail">
<a href=" ">
<img src="Images\SA_1.png" alt="Sentiment Analysis" >
</a>
</div>
<div class="col-sm-1"></div>
<div class="col-sm-3 thumbnail">
<a href=" ">
<img src="Images\SA_2.png" alt="Sentiment Analysis" >
</a>
</div>
<div class="col-sm-1"></div>
<div class="col-sm-4 thumbnail">
<a href=" ">
<img src="Images\SA_3.png" alt="Sentiment Analysis" >
</a>
</div>
</div>
</div>
</div>
</body>
</html>