Diferencia entre revisiones de «Competencias»

De MoodleDocs
Sin resumen de edición
Sin resumen de edición
Línea 24: Línea 24:
El administrador puede activar/desactivar completamente los resultados para todo el sitio Moodle.
El administrador puede activar/desactivar completamente los resultados para todo el sitio Moodle.


==Outcomes management and reporting==
==Adminitración y reporte de resultados==


A grade report at /grade/report/outcomes is the place where people manage outcomes. There are three tabs to this report, visibility is dependent on your permissions:
Un reporte de calificación en /calificación/reporte/resultados es el lugar donde los usuarios administran los resultados. Existen tres pestañas para este reporte, teniendo en cuenta que la visualización de éstos es dependiente de sus permisos en el curso:


===Site management (Admin user)===
===Administración del sitio (Usuario administrador)===


The admin can create and edit a list of outcomes using a GUI.
El administrador puede crear y editar una lista de resultados utilizando un GUI.


Outcomes have these main fields:
Los resultados cuentan con estos campos principales:
* shortname - some code or abbreviated name
* nombre corto - algún código o nombre abreviado
* fullname - the full "sentence" describing the outcome
* nombre completo - la "oración" completa que describa el resultado
* scaleid - a chosen scale for ratings
* scaleid - una escala escogida para clasificaciones


Later we can also add importing from a CSV file, so that it's easy for sites to import long lists of state-based standards or training competencies.
Later we can also add importing from a CSV file, so that it's easy for sites to import long lists of state-based standards or training competencies.

Revisión del 14:27 25 may 2010

Nota: Pendiente de Traducir. ¡Anímese a traducir esta página!.     ( y otras páginas pendientes)

Se permiten Resultados (también conocidos como 'competencias', 'objetivos', 'estándars' o 'criterios'). Significa que calificamos usando una o más escalas que están conectadas a las declaraciones de resultados. La activación de los resultados posibilita esta forma especial de calificación en todo el sitio.

Esta directamente relacionado con Desarrollo:Calificaciones aunque es opcional su uso.

Por ejemplo, una Tarea puede ser calificada de acuerdo a estas tres escalas (juntas conforman una Rubrica).

Contenido - Pobre, aceptable, bueno
Organización - Pobre, aceptable, bueno
Gramática - Pobre, aceptable, bueno 


Estos son los componentes:

Resultados del Sitio vs Curso

La mayoría de los resultados están disponibles a nivel de sitio, lo que significa que pueden ser usado por cualquier actividad en cualquier curso, siempre que hayamos habilitado el ajuste general. Esto se consigue dejando a los resultados del course ID campo vacío (en la base de datos).

En algunos casos puede que desee definir un resultado extraordinario, específico de un curso. Esto se logra asignando en el curso deseado los resultados en el campo. Ese resultado no estará disponible fuera del contexto de ese curso.

Ajuste General

El administrador puede activar/desactivar completamente los resultados para todo el sitio Moodle.

Adminitración y reporte de resultados

Un reporte de calificación en /calificación/reporte/resultados es el lugar donde los usuarios administran los resultados. Existen tres pestañas para este reporte, teniendo en cuenta que la visualización de éstos es dependiente de sus permisos en el curso:

Administración del sitio (Usuario administrador)

El administrador puede crear y editar una lista de resultados utilizando un GUI.

Los resultados cuentan con estos campos principales:

  • nombre corto - algún código o nombre abreviado
  • nombre completo - la "oración" completa que describa el resultado
  • scaleid - una escala escogida para clasificaciones

Later we can also add importing from a CSV file, so that it's easy for sites to import long lists of state-based standards or training competencies.

Course management (Editing teacher)

The editing teacher can choose from this large list to pick a subset of outcomes for the current course. They can also define new outcomes to be used JUST for this course.

Course reporting (Teacher)

The course report displays all the chosen outcomes for this course along with information about which activities are currently tied to them, or reporting of students according to which outcomes they've achieved "passing grades" in, and which ones they are failing in, as an aid to identify strong/weak points for individuals and groups.

Here is a sample report:

Outcome nameOverall averageSite-wideActivitiesAverageNumber of grades
intelligence Idiotic (1.5) No Philosophy in FranceIdiotic (1.5)2
Wisdom Smart (4.29) Yes Ancient GaulStupid (2.6)5
French Kings and QueensClever (5.97)2
honesty - Yes - - 0
Arrogance - Yes - - 0

Activity editing

A new grading section added to the course mod update form using a single function (similar to standard_coursemodule_elements()) which offers a choice between:

  • basic grading (as now) OR
  • outcomes

The course outcomes are shown in a multi-select list and any number can be chosen.

For Moodle 1.9 we should not offer both, to keep things simple.

The result of these forms goes to course/mod.php which is able to process them without any further functions from the module itself. Roughly it would uset grade_get_items to find out what items were already set, and then compare to the new form input to work out what calls to grade_update() need to made to create/update/delete existing grade_items.

Note that not all activities could be upgraded to support this. Assignment is a natural first one to implement for 1.9, then we can see after that.

Potentially even modules without grading could still support outcomes, the columns in the gradebook would just have to be filled in manually, that's all.

Activity grading

Activities that support grading (like Assignment) need to be upgraded to support:

Multiple grading interface

grade_get_items() would get the items and make the interface fairly easy to do. Where there was one popup menu there would now be multiple popup menus.

Storage of multiple grades

This is a bit more tricky, because we want to avoid adding lots of grade1, grade2, grade3 fields to every module's tables.

I can see three potential ways forward here:

  1. We add new fields to every module and just live with the hardcoded limits (eg max of 5 outcomes per activity).
  2. We add a new generic table where modules can store their grades (outside of the gradebook).
  3. We open up the API slightly to allow modules to store their grades directly into the gradebook. This sort of binding was something I have been always trying to avoid but perhaps it's unavoidable.

We need to discuss these options and think about them some more.


Ver también