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
aee0cea6
Commit
aee0cea6
authored
7 years ago
by
Bruno Meyer
Browse files
Options
Downloads
Patches
Plain Diff
funcionando pra csv tambem
parent
93c9c2c5
No related branches found
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/script/base/dataframe_base.py
+72
-68
72 additions, 68 deletions
src/script/base/dataframe_base.py
with
72 additions
and
68 deletions
src/script/base/dataframe_base.py
+
72
−
68
View file @
aee0cea6
...
...
@@ -10,101 +10,105 @@ from script.utils.situations import *
class
DataframeHolder
:
def
__init__
(
self
,
dataframe
):
self
.
students
=
dataframe
.
groupby
(
'
MATR_ALUNO
'
)
self
.
courses
=
dataframe
.
groupby
(
'
COD_ATIV_CURRIC
'
)
self
.
admission
=
dataframe
.
groupby
([
'
ANO_INGRESSO
'
,
'
SEMESTRE_INGRESSO
'
])
def
__init__
(
self
,
dataframe
):
self
.
students
=
dataframe
.
groupby
(
'
MATR_ALUNO
'
)
self
.
courses
=
dataframe
.
groupby
(
'
COD_ATIV_CURRIC
'
)
self
.
admission
=
dataframe
.
groupby
([
'
ANO_INGRESSO
'
,
'
SEMESTRE_INGRESSO
'
])
def
load_dataframes
(
cwd
=
'
.
'
):
dataframes
=
[]
for
path
,
dirs
,
files
in
os
.
walk
(
cwd
):
for
f
in
files
:
file_path
=
path
+
'
/
'
+
f
dh
=
{
'
name
'
:
f
,
'
dataframe
'
:
None
}
if
'
csv
'
in
f
:
dh
[
'
dataframe
'
]
=
read_csv
(
file_path
)
if
'
xls
'
in
f
:
dh
[
'
dataframe
'
]
=
read_excel
(
file_path
)
dataframes
=
[]
for
path
,
dirs
,
files
in
os
.
walk
(
cwd
):
for
f
in
files
:
file_path
=
path
+
'
/
'
+
f
dh
=
{
'
name
'
:
f
,
'
dataframe
'
:
None
}
if
'
csv
'
in
f
:
dh
[
'
dataframe
'
]
=
read_csv
(
file_path
)
if
'
xls
'
in
f
:
dh
[
'
dataframe
'
]
=
read_excel
(
file_path
)
if
dh
[
'
dataframe
'
]
is
not
None
:
dataframes
.
append
(
dh
)
if
dh
[
'
dataframe
'
]
is
not
None
:
dataframes
.
append
(
dh
)
dataframe
=
fix_dataframes
(
dataframes
)
dataframe
=
fix_dataframes
(
dataframes
)
dh
=
DataframeHolder
(
dataframe
)
#~ dh.students.aggregate(teste)
#
print(dh.students['MEDIA_FINAL'].aggregate(teste))
return
dataframe
dh
=
DataframeHolder
(
dataframe
)
#~ dh.students.aggregate(teste)
#
print(dh.students['MEDIA_FINAL'].aggregate(teste))
return
dataframe
def
read_excel
(
path
,
planilha
=
'
Planilha1
'
):
return
pd
.
read_excel
(
path
)
return
pd
.
read_excel
(
path
)
def
read_csv
(
path
):
return
pd
.
read_csv
(
path
)
return
pd
.
read_csv
(
path
)
def
fix_dataframes
(
dataframes
):
for
df
in
dataframes
:
if
df
[
'
name
'
]
==
'
historico.xls
'
:
history
=
df
[
'
dataframe
'
]
if
df
[
'
name
'
]
==
'
matricula.xls
'
:
register
=
df
[
'
dataframe
'
]
clean_history
(
history
)
clean_register
(
register
)
merged
=
pd
.
merge
(
history
,
register
,
how
=
'
right
'
,
on
=
[
'
MATR_ALUNO
'
])
#~ print(merged)
fix_situation
(
merged
)
# fix_admission(merged)
fix_evasion
(
merged
)
return
merged
for
df
in
dataframes
:
if
df
[
'
name
'
]
==
'
historico.xls
'
or
df
[
'
name
'
]
==
'
historico.csv
'
:
history
=
df
[
'
dataframe
'
]
if
df
[
'
name
'
]
==
'
matricula.xls
'
or
df
[
'
name
'
]
==
'
matricula.csv
'
:
register
=
df
[
'
dataframe
'
]
clean_history
(
history
)
clean_register
(
register
)
#~ df.dropna(axis=0, how='all')
history
[
"
MEDIA_FINAL
"
]
=
pd
.
to_numeric
(
history
[
"
MEDIA_FINAL
"
],
errors
=
'
coerce
'
)
history
=
history
[
np
.
isfinite
(
history
[
'
MEDIA_FINAL
'
])]
merged
=
pd
.
merge
(
history
,
register
,
how
=
'
right
'
,
on
=
[
'
MATR_ALUNO
'
])
#~ print(merged)
fix_situation
(
merged
)
# fix_admission(merged)
fix_evasion
(
merged
)
return
merged
def
clean_history
(
df
):
df
.
drop
([
'
ID_NOTA
'
,
'
CONCEITO
'
,
'
ID_LOCAL_DISPENSA
'
,
'
SITUACAO_CURRICULO
'
,
'
ID_CURSO_ALUNO
'
,
'
ID_VERSAO_CURSO
'
,
'
ID_CURRIC_ALUNO
'
,
'
ID_ATIV_CURRIC
'
,
'
SITUACAO_ITEM
'
,
'
ID_ESTRUTURA_CUR
'
],
axis
=
1
,
inplace
=
True
)
df
[
'
PERIODO
'
]
=
df
[
'
PERIODO
'
].
str
.
split
(
'
o
'
).
str
[
0
]
df
.
drop
([
'
ID_NOTA
'
,
'
CONCEITO
'
,
'
ID_LOCAL_DISPENSA
'
,
'
SITUACAO_CURRICULO
'
,
'
ID_CURSO_ALUNO
'
,
'
ID_VERSAO_CURSO
'
,
'
ID_CURRIC_ALUNO
'
,
'
ID_ATIV_CURRIC
'
,
'
SITUACAO_ITEM
'
,
'
ID_ESTRUTURA_CUR
'
],
axis
=
1
,
inplace
=
True
)
df
[
'
PERIODO
'
]
=
df
[
'
PERIODO
'
].
str
.
split
(
'
o
'
).
str
[
0
]
def
clean_register
(
df
):
df_split
=
df
[
'
PERIODO_INGRESSO
'
].
str
.
split
(
'
/
'
)
df
[
'
ANO_INGRESSO
'
]
=
df_split
.
str
[
0
]
df
[
'
SEMESTRE_INGRESSO
'
]
=
df_split
.
str
[
1
].
str
.
split
(
'
o
'
).
str
[
0
]
df_split
=
df
[
'
PERIODO_EVASAO
'
].
str
.
split
(
'
/
'
)
df
[
'
ANO_EVASAO
'
]
=
df_split
.
str
[
0
]
df
[
'
SEMESTRE_EVASAO
'
]
=
df_split
.
str
[
1
].
str
.
split
(
'
o
'
).
str
[
0
]
df_split
=
df
[
'
PERIODO_INGRESSO
'
].
str
.
split
(
'
/
'
)
df
[
'
ANO_INGRESSO
'
]
=
df_split
.
str
[
0
]
df
[
'
SEMESTRE_INGRESSO
'
]
=
df_split
.
str
[
1
].
str
.
split
(
'
o
'
).
str
[
0
]
df_split
=
df
[
'
PERIODO_EVASAO
'
].
str
.
split
(
'
/
'
)
df
[
'
ANO_EVASAO
'
]
=
df_split
.
str
[
0
]
df
[
'
SEMESTRE_EVASAO
'
]
=
df_split
.
str
[
1
].
str
.
split
(
'
o
'
).
str
[
0
]
df
.
drop
([
'
ID_PESSOA
'
,
'
NOME_PESSOA
'
,
'
DT_NASCIMENTO
'
,
'
NOME_UNIDADE
'
,
'
COD_CURSO
'
,
'
NUM_VERSAO
'
,
'
PERIODO_INGRESSO
'
,
'
PERIODO_EVASAO
'
,
],
axis
=
1
,
inplace
=
True
)
df
.
drop
([
'
ID_PESSOA
'
,
'
NOME_PESSOA
'
,
'
DT_NASCIMENTO
'
,
'
NOME_UNIDADE
'
,
'
COD_CURSO
'
,
'
NUM_VERSAO
'
,
'
PERIODO_INGRESSO
'
,
'
PERIODO_EVASAO
'
,
],
axis
=
1
,
inplace
=
True
)
def
fix_situation
(
df
):
for
situation
in
Situation
.
SITUATIONS
:
df
.
loc
[
df
.
SITUACAO
==
situation
[
1
],
'
SITUACAO
'
]
=
situation
[
0
]
for
situation
in
Situation
.
SITUATIONS
:
df
.
loc
[
df
.
SITUACAO
==
situation
[
1
],
'
SITUACAO
'
]
=
situation
[
0
]
def
fix_admission
(
df
):
for
adm
in
AdmissionType
.
ADMISSION_FORM
:
df
.
loc
[
df
.
FORMA_INGRESSO
==
adm
[
1
],
'
FORMA_INGRESSO
'
]
=
adm
[
0
]
for
adm
in
AdmissionType
.
ADMISSION_FORM
:
df
.
loc
[
df
.
FORMA_INGRESSO
==
adm
[
1
],
'
FORMA_INGRESSO
'
]
=
adm
[
0
]
def
fix_evasion
(
df
):
evasionForms
=
[
x
[
1
]
for
x
in
EvasionForm
.
EVASION_FORM
]
df
.
loc
[
~
df
.
FORMA_EVASAO
.
isin
(
evasionForms
),
'
FORMA_EVASAO
'
]
=
100
for
evasion
in
EvasionForm
.
EVASION_FORM
:
#~ df.loc[df.FORMA_EVASAO.str.contains(evasion[1]).fillna(1.0), 'FORMA_EVASAO'] = evasion[0]
df
.
loc
[
df
.
FORMA_EVASAO
==
evasion
[
1
],
'
FORMA_EVASAO
'
]
=
evasion
[
0
]
#~ if(evasion[0] == 100):
#~ for x in df.FORMA_EVASAO.str.contains(evasion[1]).fillna(False):
#~ if(x != 0.0):
#~ print(x)
#~ print(df.FORMA_EVASAO.str.contains(evasion[1]).fillna(5))
#~ print(df[['MATR_ALUNO','FORMA_EVASAO']])
evasionForms
=
[
x
[
1
]
for
x
in
EvasionForm
.
EVASION_FORM
]
df
.
loc
[
~
df
.
FORMA_EVASAO
.
isin
(
evasionForms
),
'
FORMA_EVASAO
'
]
=
100
for
evasion
in
EvasionForm
.
EVASION_FORM
:
#~ df.loc[df.FORMA_EVASAO.str.contains(evasion[1]).fillna(1.0), 'FORMA_EVASAO'] = evasion[0]
df
.
loc
[
df
.
FORMA_EVASAO
==
evasion
[
1
],
'
FORMA_EVASAO
'
]
=
evasion
[
0
]
#~ if(evasion[0] == 100):
#~ for x in df.FORMA_EVASAO.str.contains(evasion[1]).fillna(False):
#~ if(x != 0.0):
#~ print(x)
#~ print(df.FORMA_EVASAO.str.contains(evasion[1]).fillna(5))
#~ print(df[['MATR_ALUNO','FORMA_EVASAO']])
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