lewisjwilson / kmj

The all-in-one Japanese dictionary/flashcard app.
2 stars 0 forks source link

Include Stats #48

Open lewisjwilson opened 3 years ago

lewisjwilson commented 3 years ago

Per word and overall.

lewisjwilson commented 3 years ago

For displaying percentage:

SQlite:

SELECT correct, seen, printf("%.2f", (100.0 * correct/seen)) as percentage 
from jisho_data
ORDER BY (100.0 * correct/seen) DESC

This displays the "percentage" of how many words are correct and orders based on "most proficient" to "least proficient"

lewisjwilson commented 3 years ago

Would be nice to include a review forecast on a timeline similar to as Bunpro does.