Open lewisjwilson opened 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"
Would be nice to include a review forecast on a timeline similar to as Bunpro does.
Per word and overall.