repytex/repytex/reports/eval_reports.py

93 lines
2.5 KiB
Python
Raw Normal View History

#!/usr/bin/env python
# encoding: utf-8
2017-04-17 10:10:20 +00:00
"""
Evaluation reports
"""
2017-04-17 12:10:14 +00:00
from repytex.tools import (
2017-04-17 10:10:20 +00:00
extract_flat_marks,
get_class_ws,
digest_flat_df,
evaluation
)
import pandas as pd
from path import Path
2017-04-17 10:10:20 +00:00
from .produce_compile import produce_compile
import logging
2017-03-07 10:08:50 +00:00
logger = logging.getLogger(__name__)
2017-04-17 10:10:20 +00:00
def eval_info(classe, ds_df):
"""TODO: Docstring for build_ds_info.
:param ds_df: TODO
:returns: TODO
# TODO: vérifier que toutes ces informations soient identiques sur les lignes |dim. nov. 6 16:06:58 EAT 2016
"""
eval_info = {}
eval_info["Classe"] = classe
eval_info["Nom"] = ds_df["Nom"].unique()[0]
eval_info["Date"] = pd.to_datetime(ds_df["Date"].unique()[0]).strftime("%d-%m-%Y")
eval_info["Trimestre"] = ds_df["Trimestre"].unique()[0]
return eval_info
2017-04-17 10:10:20 +00:00
def build_target_name(classe, evalname, path = Path("./")):
""" Build the path where the .tex will be sored
>>> build_target_name("312", "DS1")
2017-03-07 10:08:50 +00:00
Path('./312/report_DS1.tex')
>>> build_target_name("312", "DS1", Path("plop/"))
2017-03-07 10:08:50 +00:00
Path('plop/312/report_DS1.tex')
"""
2017-03-07 10:08:50 +00:00
return Path(path + "/" + classe + "/report_" + evalname + ".tex")
2017-04-17 10:10:20 +00:00
def eval_report(classe, evalname, path = Path('./'),
template="tpl_reports_eval.tex", force=1):
2017-03-07 10:08:50 +00:00
""" Generate the report of a evaluation for a class
:param classe: the classe name
:param evalname: name of the evaluation
:param path: path where xlsx are stored
2017-03-07 10:08:50 +00:00
:param template: template for the report
2017-04-17 10:10:20 +00:00
:param force: Override existing documents
"""
ws = get_class_ws(classe, path)
logger.info("Worksheets of {} imported".format(classe))
flat_df = extract_flat_marks(ws)
logger.info("Worksheets parsed")
2017-03-24 16:30:31 +00:00
this_df = flat_df[flat_df['Nom'] == evalname]
quest_df, exo_df, eval_df = digest_flat_df(this_df)
2017-03-07 10:08:50 +00:00
report_info = eval_info(classe, eval_df)
2017-03-24 16:30:31 +00:00
students = evaluation.students_pov(quest_df, exo_df, eval_df)
2017-04-01 10:35:50 +00:00
class_pov = evaluation.class_pov(quest_df, exo_df, eval_df)
2017-03-24 16:30:31 +00:00
studs = {*this_df['Eleve']}
present = {*eval_df['Eleve']}
absents = studs - present
datas = {"report_info": report_info,
"students":students,
2017-04-01 10:35:50 +00:00
"classe": class_pov,
2017-03-24 16:30:31 +00:00
"absents": absents
}
target = build_target_name(classe, evalname, path)
2017-04-17 10:10:20 +00:00
produce_compile(template, datas, target, force)
# -----------------------------
# Reglages pour 'vim'
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
2017-04-17 10:10:20 +00:00
# cursor: 16 del