I posted some numbers yesterday, but I'll admit I'm not a mathematician at heart. I used a simple sum(pass)/sum(failed) to get an average pass rate for all flashcards, all users.
As I went to bed I realised I could split this by number of reviews, so we can see the pass rate over time :
Keep in mind those are not successive positive reviews, just total number of reviews.
Rates drop down slowly after 5 reviews, but still at 74% after 19 reviews.
Interestingly there is a big drop of 7% between 7 and 8 reviews, this could be due to one of the intervals being too long.
7th revision is after a 120 day interval and 8th revision is after a 240 day interval, assuming the flashcard was never failed, and not using the "easy" answer, which would push the intervals even more.
Lately I've been pondering about that and I'm leaning towards using new intervals for the next area, it may result in more reviews, but I've found vocab and sentence reviews to be less taxing than the kanji reviews.
These are the base values, without the amount of variance added in :
0, 3, 7, 14, 30, 60, 120, 240 (i.e. a card going to the 2nd stack gets a 3 day interval)
This is the numbers I'm using for the vocab/sentence reviews :
From many reports on this forum I'm thinking people need more early reviews. So I've changed the values for the vocab/sentence area :
0, 1, 3, 10, 30, 60, 120, 180
- after the first review from the blue stack, get a review one day later
- get another review 3 days later as usual
- one week interval instead of 4 days
- the rest is similar...
- the last interval reduced to 6 months, instead of 8 months
As I went to bed I realised I could split this by number of reviews, so we can see the pass rate over time :
Code:
+--------------+----------+-------------------------------------+
| totalreviews | count(*) | SUM(successcount)/SUM(totalreviews) |
+--------------+----------+-------------------------------------+
| 0 | 508099 | NULL |
| 1 | 229976 | 0.49 |
| 2 | 115018 | 0.80 |
| 3 | 112413 | 0.84 |
| 4 | 141928 | 0.89 |
| 5 | 158553 | 0.90 |
| 6 | 130305 | 0.89 |
| 7 | 90775 | 0.87 |
| 8 | 47403 | 0.80 |
| 9 | 36060 | 0.79 |
| 10 | 28967 | 0.79 |
| 11 | 22147 | 0.78 |
| 12 | 17172 | 0.78 |
| 13 | 11714 | 0.75 |
| 14 | 9507 | 0.76 |
| 15 | 7260 | 0.74 |
| 16 | 5524 | 0.74 |
| 17 | 4344 | 0.73 |
| 18 | 3402 | 0.72 |
| 19 | 2900 | 0.74 |
+--------------+----------+-------------------------------------+Rates drop down slowly after 5 reviews, but still at 74% after 19 reviews.
Interestingly there is a big drop of 7% between 7 and 8 reviews, this could be due to one of the intervals being too long.
7th revision is after a 120 day interval and 8th revision is after a 240 day interval, assuming the flashcard was never failed, and not using the "easy" answer, which would push the intervals even more.
Lately I've been pondering about that and I'm leaning towards using new intervals for the next area, it may result in more reviews, but I've found vocab and sentence reviews to be less taxing than the kanji reviews.
These are the base values, without the amount of variance added in :
0, 3, 7, 14, 30, 60, 120, 240 (i.e. a card going to the 2nd stack gets a 3 day interval)
This is the numbers I'm using for the vocab/sentence reviews :
From many reports on this forum I'm thinking people need more early reviews. So I've changed the values for the vocab/sentence area :
0, 1, 3, 10, 30, 60, 120, 180
- after the first review from the blue stack, get a review one day later
- get another review 3 days later as usual
- one week interval instead of 4 days
- the rest is similar...
- the last interval reduced to 6 months, instead of 8 months

