Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
E
Education in INDIA
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Manas
Education in INDIA
Commits
6f640d7b
Commit
6f640d7b
authored
Nov 22, 2022
by
Manas Gabani
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ylabel adjusted for distribution graphs
parent
c56813b8
Changes
2
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
17 additions
and
17 deletions
+17
-17
app.py
app.py
+14
-14
utils.py
utils.py
+3
-3
No files found.
app.py
View file @
6f640d7b
This diff is collapsed.
Click to expand it.
utils.py
View file @
6f640d7b
...
...
@@ -130,7 +130,7 @@ def total_classrooms_by_trend(output_filename, input_df, state_code):
plt
.
legend
()
plt
.
xticks
(
np
.
arange
(
min_year
,
max_year
+
1
,
1.0
))
plt
.
ylabel
(
'Number of
c
lassrooms'
)
plt
.
ylabel
(
'Number of
C
lassrooms'
)
plt
.
xlabel
(
'Year'
)
plt
.
savefig
(
output_filename
)
plt
.
close
(
fig
)
...
...
@@ -159,7 +159,7 @@ def total_schools_for_facilities(output_filename, input_df, state_code):
plt
.
legend
()
plt
.
xticks
(
np
.
arange
(
min_year
,
max_year
+
1
,
1.0
))
plt
.
ylabel
(
'Number of
s
chools'
)
plt
.
ylabel
(
'Number of
S
chools'
)
plt
.
xlabel
(
'Year'
)
plt
.
savefig
(
output_filename
)
plt
.
close
(
fig
)
...
...
@@ -216,7 +216,7 @@ def total_schools_for_facilities_overall(output_filename, input_df):
plt
.
legend
()
plt
.
xticks
(
np
.
arange
(
min_year
,
max_year
+
1
,
1.0
))
plt
.
ylabel
(
'Number of
s
chools'
)
plt
.
ylabel
(
'Number of
S
chools'
)
plt
.
xlabel
(
'Year'
)
plt
.
savefig
(
output_filename
)
plt
.
close
(
fig
)
\ No newline at end of file
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment