So when I was doing my treadmill self-experiment writeup
(http://www.gwern.net/Treadmill#treadmill-effect-on-spaced-repetition-performance-randomized-experiment)
I had intended to analyze any effect of the treadmill usage on the
*next* review of flashcards reviewed then, but I couldn't figure out
the SQL query.

I recently got some help on that, and it turns out to be fairly
complex, so I'm posting it here as a guide for anyone else interested
in extracting information from Mnemosyne. You can get the grades, next
grades, timestamps, easiness and some other stuff with a query like
this:

     SELECT 
timestamp,object_id,grade,easiness,thinking_time,actual_interval,(SELECT
grade FROM log AS log2 WHERE log2.object_id = log.object_id AND
log2.timestamp > log.timestamp ORDER BY log2.timestamp DESC LIMIT 1)
AS grade_future FROM log WHERE event_type==9;

(For those curious: no, the treadmill doesn't seem to affect later
reviews except as it influenced the present review negatively.)

-- 
gwern

-- 
You received this message because you are subscribed to the Google Groups 
"mnemosyne-proj-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/mnemosyne-proj-users/CAMwO0gzcPOMOm8BXyk%3DOAkhKtxCOSp93-pGCK3ACbiwvhUfRMQ%40mail.gmail.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to