Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
A
adega
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Odair M.
adega
Commits
0daa8dc3
Commit
0daa8dc3
authored
7 years ago
by
João Denis Rodrigues
Browse files
Options
Downloads
Patches
Plain Diff
Alguma coisa dos aluno
parent
d5bcba9e
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
script/analysis/student_analysis.py
+18
-0
18 additions, 0 deletions
script/analysis/student_analysis.py
script/base/dataframe_base.py
+4
-12
4 additions, 12 deletions
script/base/dataframe_base.py
script/build_cache.py
+19
-6
19 additions, 6 deletions
script/build_cache.py
with
41 additions
and
18 deletions
script/analysis/student_analysis.py
+
18
−
0
View file @
0daa8dc3
import
re
import
pandas
as
pd
import
numpy
as
np
from
utils.situations
import
*
def
average_ira
(
df
):
print
(
df
)
new_df
=
df
.
dropna
(
subset
=
[
'
MEDIA_FINAL
'
])
new_df
=
new_df
[
new_df
[
'
MEDIA_FINAL
'
]
<=
100
]
if
not
new_df
.
empty
:
grade
=
np
.
sum
(
new_df
[
'
MEDIA_FINAL
'
]
*
new_df
[
'
CH_TOTAL
'
])
total_ch
=
np
.
sum
(
new_df
[
'
CH_TOTAL
'
])
*
100
return
grade
/
total_ch
def
pass_rate
(
dt
):
new_dt
=
dt
[
dt
[
'
SITUACAO
'
].
isin
(
Situation
.
SITATUION_PASS
)]
This diff is collapsed.
Click to expand it.
script/base/dataframe_base.py
+
4
−
12
View file @
0daa8dc3
...
...
@@ -8,15 +8,6 @@ from json import load as json_load
from
utils.situations
import
*
def
teste
(
d
):
temp
=
d
.
dropna
(
subset
=
[
'
MEDIA_FINAL
'
])
temp
=
temp
[
temp
[
'
MEDIA_FINAL
'
]
<=
100
]
if
not
temp
.
empty
:
#print(temp[['MEDIA_FINAL', 'CH_TOTAL']])
aux
=
np
.
sum
(
temp
[
'
MEDIA_FINAL
'
]
*
temp
[
'
CH_TOTAL
'
])
ch_total
=
np
.
sum
(
temp
[
'
CH_TOTAL
'
])
*
100
print
(
aux
/
ch_total
)
class
DataframeHolder
:
def
__init__
(
self
,
dataframe
):
self
.
students
=
dataframe
.
groupby
(
'
MATR_ALUNO
'
)
...
...
@@ -39,10 +30,11 @@ def load_dataframes(cwd='.'):
dataframes
.
append
(
dh
)
dataframe
=
fix_dataframes
(
dataframes
)
dh
=
DataframeHolder
(
dataframe
)
dh
.
students
.
aggregate
(
teste
)
# print(dh.students['MEDIA_FINAL'].aggregate(teste))
return
d
ataframe
return
d
h
def
read_excel
(
path
,
planilha
=
'
Planilha1
'
):
...
...
This diff is collapsed.
Click to expand it.
script/build_cache.py
+
19
−
6
View file @
0daa8dc3
...
...
@@ -6,8 +6,8 @@ import math
from
datetime
import
timedelta
from
pathlib
import
Path
from
utils.utils
import
build_path
from
analysis.degree_analysis
import
*
import
analysis.degree_analysis
as
de_an
import
analysis.student_analysis
as
st_an
try
:
to_unicode
=
unicode
except
NameError
:
...
...
@@ -21,6 +21,7 @@ def build_cache(dataframe):
path
+=
"
/curso
"
build_path
(
path
)
generate_student_data
(
path
,
dataframe
)
# generate_degree_data(path, dataframe)
# generate_student_data(path)
# generate_student_list(path)
...
...
@@ -30,12 +31,24 @@ def build_cache(dataframe):
# generate_course_general_data(path)
def
generate_degree_data
(
path
,
dataframe
):
average_graduation
(
dataframe
)
general_failure
(
dataframe
)
general_ira
(
dataframe
)
de_an
.
average_graduation
(
dataframe
)
de_an
.
general_failure
(
dataframe
)
de_an
.
general_ira
(
dataframe
)
pass
def
generate_student_data
(
path
):
def
teste
(
d
):
temp
=
d
.
dropna
(
subset
=
[
'
MEDIA_FINAL
'
])
temp
=
temp
[
temp
[
'
MEDIA_FINAL
'
]
<=
100
]
if
not
temp
.
empty
:
#print(temp[['MEDIA_FINAL', 'CH_TOTAL']])
aux
=
np
.
sum
(
temp
[
'
MEDIA_FINAL
'
]
*
temp
[
'
CH_TOTAL
'
])
ch_total
=
np
.
sum
(
temp
[
'
CH_TOTAL
'
])
*
100
print
(
aux
/
ch_total
)
def
generate_student_data
(
path
,
dataframe
):
# student_df = dataframe.groupby('MATR_ALUNO')
dataframe
.
students
.
aggregate
(
teste
)
pass
def
generate_student_list
(
path
):
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment