Changes between Version 2 and Version 3 of BoltTutorialAnalytics


Ignore:
Timestamp:
Feb 21, 2008, 7:59:42 AM (16 years ago)
Author:
davea
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • BoltTutorialAnalytics

    v2 v3  
    11= Bolt Tutorial, Part III: Analytics =
     2
     3== Micro-experiments ==
     4
     5Suppose you have two alternative lessons for a given concept.
     6They may be completely different,
     7or they may differ in appearance.
     8Which is better?
     9Or is each better for some identifiable subset of students?
     10To investigate, create a '''micro-experiment'''
     11in which students are randomly shown one lesson or the other,
     12and then perform an exercise.
     13{{{
     14function show_lesson() {
     15    return select(
     16        name('show_lesson'),
     17        valuator('rand'),
     18        lesson(
     19            filename('lesson1.php')
     20        ),
     21        lesson(
     22            filename('lesson2.php')
     23        ),
     24    }
     25);
     26
     27return sequence(
     28    name('course'),
     29    show_lesson(),
     30    exercise(
     31        filename('exercise.php')
     32    )
     33);
     34}}}
     35
     36This uses a new control structure, '''select()'''.
     37This takes a 'valuator' function (in this case, random)
     38and a set of units.
     39It shows the unit for which the valuator function has the largest value.
     40
     41== Lesson comparison ==
     42
     43After a number of students have passed through the micro-experiment,
     44you may have enough data to conclude something about your lessons.
     45To do this, go to the course Control Panel
     46and click Lesson Compare.
    247
    348== Course maps ==
    449
    5 == Lesson comparison ==