-
Notifications
You must be signed in to change notification settings - Fork 2
/
Gujrat.html
179 lines (169 loc) · 6.39 KB
/
Gujrat.html
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
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
<link rel="stylesheet" href="guj.css">
</head>
<body>
<header>
<h2 class="logo"> Gujrat Dropout Rates</h2>
<nav class="navigation">
<button class ="h">
<a href="Index.html">Home</a>
<a href="#foot">About Us</a>
</button>
<button class ="drp">
<h1>States</h1>
<span class="dropdown-content">
<a id="top" href="#">Gujrat</a>
<a id="middle" href="#">Maharashtra</a>
<a id="bottom" href="#">West Bengal</a>
</span>
</button>
</nav>
</header>
<section>
<body>
<div class="graphbox">
<div class="box">
<canvas id="myChart"></canvas>
</div>
<div class="box">
<canvas id="ear"></canvas>
</div>
</div>
<section><p>
The dropout rate in Gujarat is constantly rising. This is demonstrated by data provided by various government departments, as stated in a report by The New Indian Express.
On February 13, 2023, the Department of Education stated that the dropout rate in Gujarat at the primary level was:
2017-18: 1.7%
2018-19: 2.3%
2019-20: 1.0%
2021-22: 0.0%
While the dropout rate at the secondary level was:
2017-18: 20.6%
2018-19: 23.8%
2019-20: 23.7%
2020-21: 23.3%
2021-23: 17.9%
</p>
</section>
<section>
<p>
The National Family Health survey revealed that 57% boys and 44% girls attending higher secondary school in 2019-21. Nearly 15 years ago only 36% boys and 28% girls were able to reach the landmark.
Reasons:
The National Family Health and Rajesh Bhat stated that water availability and sanitation are the major factors for dropping out.
Bharat Gajipara, the self-finance school association of Gujarat stated that the distance between school and home is a major factor.
As students move from primary to secondary school, the chance of dropping out of students increases 2.7 times. The total number of siblings has been found to be a highly significant predictor of school drop-out. An increase in family size by one increases the chance of dropping out 1.7 times.
Objectives:
. To understand the differentials in school dropouts at state levels.
• To understand the main reasons for school dropout reported by household members.
• To examine the household and parental situations influencing the school dropouts in India.
Solutions:
1. We will be approaching Rotaract’s and NGOs to provide scholarships programs.
2. Launch awareness campaigns to educate parents about the importance of education.
3. Advocate for policy changes that address structural inequalities and improve the overall quality of education in India.
</p>
</section>
<script src="https://cdn.jsdelivr.net/npm/[email protected]/dist/chart.umd.min.js"></script>
<script type="text/javascript" src="https://cdn.jsdelivr.net/npm/chart.js/dist/chart.umd.min.js"></script>
<script src="https://cdn.jsdelivr.net/npm/chartjs-adapter-date-fns/dist/chartjs-adapter-date-fns.bundle.min.js"></script>
<script>
const ctx = document.getElementById('myChart');
const ear = document.getElementById('ear');
new Chart(ctx, {
type: 'polarArea',
data: {
labels: ['2021-22', '2020-21', '2019-20', '2018-19', '2017-18', '2016-17'],
datasets: [{
label: '# Total no. of Dropouts',
data: [7.63, 4.16, 9.97, 11.167, 2.43, 4.23],
// backgroundColor: [
// 'rgba(225,99,132,1)',
// 'rgba(54,162,235,1)',
// 'rgba(255,206,86,1)',
// 'rgba(75,192,192,1)',
// 'rgba(153,102,255,1)',
// 'rgba(255,159,64,1)'
// ]
// borderColor: [
// 'rgba(225,99,132,1)',
// 'rgba(54,162,235,1)',
// 'rgba(255,206,86,1)',
// 'rgba(75,192,192,1)',
// 'rgba(153,102,255,1)',
// 'rgba(255,159,64,1)'
// ]
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
new Chart(ear, {
type: 'line',
data: {
datasets: [{
label: 'Boys',
data: [
{x: '2012-01-01', y:'0.21' },
{x: '2013-01-01', y:'0.5' },
{x: '2014-01-01', y:'0' },
{x: '2015-01-01', y:'0.7' },
{x: '2016-01-01', y:'0.6' },
{x: '2017-01-01', y:'0' },
{x: '2018-01-01', y:'1.9' },
{x: '2019-01-01', y:'0.9' },
{x: '2020-01-01', y:'0' },
{x: '2021-01-01', y:'0' },
],
backgroundColor: [
'rgba(255, 26, 104, 0.2)',
],
borderColor: [
'rgba(255, 26, 104, 1)',
],
borderWidth: 1
},
{
label: 'Girls',
data: [
{x: '2012-01-01', y:'1.35' },
{x: '2013-01-01', y:'1.06' },
{x: '2014-01-01', y:'0' },
{x: '2015-01-01', y:'0.7' },
{x: '2016-01-01', y:'0.9' },
{x: '2017-01-01', y:'0' },
{x: '2018-01-01', y:'2.6' },
{x: '2019-01-01', y:'1' },
{x: '2020-01-01', y:'0' },
{x: '2021-01-01', y:'0' },
],
backgroundColor: [
'rgba(108, 36, 104, 0.2)',
],
borderColor: [
'rgba(108, 26, 108, 1)',
],
borderWidth: 1
}]
},
options: {
scales: {
y: {
beginAtZero: true
}
}
}
});
</script>
</section>
</body>
</body>
</html>