Like the new anki stats screen? Want more? This is the addon for you.
-
loadDelayMs: The number of ms to delay before displaying the search stats, Increasing this can help if the search stats appear above the regular stats (Though even with 0ms this doesn't tend to happen)
-
autoRevlogStats: If false, graphs which itterate over every review for the cards in the selection will be hidden by default prompting the user to press a button to load them.
-
barWidth, barHeight: Change the RESOLUTION at which the bar/candlestick charts are rendered. This can also be used to change their aspect ratio.
-
piePercentages: While true, A third percentage column is added to all pies. E.g.

Has no effect on Card Count Time Machine. -
warnings: If set to false, removes any text warning of the cutoff date in the review graphs (denoted by yellow).

-
trends: If set to false, disables trend lines.
-
categories Automatically set when you open and close a tab, can also be set to "removed" to omit the tab entirely
-
forceLang Allows you to force a specific language regardless of what Anki's language is set to.
- Future Due Types
- Future Due Retention
- Intra Day Due
- Todays Retention
- Custom pie
- Review Speed Trend
- SxR Heatmap
- Interval Distribution
- Interval Load
- Lapse Load
- Lapse Distribution
- Lapse Total
- Repetition Load
- Repetition Distribution
- Repetition Total
- Time Distribution
- Time Totals
- Introduced
- Forgotten
- Introductory Rating
- Ratings
- Interval Ratings
- Time Ratings
- Load Trend
- Learn Reviews per Card
- Memorised
- FSRS Calibration
- Stability Time Machine
- Difficulty Time Machine
- Stability Over Time
- Card Count Time Machine
- Review Interval Time Machine
- Daily Hourly Breakdown
Building this with make works on linux and will probably work on mac
To clone the repository along with its submodule (the Anki codebase), you should use the following command:
git clone https://github.com/Luc-Mcgrady/Anki-Search-Stats-Extended.git --recursive --shallow-submodulesNote
This step can be skipped if you have cloned the repo directly into the addon folder.
Once the repo has been cloned, you can add a symlink from this repo to Anki's addon folder so that the addon will be included next time you start Anki
For Linux or MacOS:
ln -s PATH_TO_CLONED_REPO PATH_TO_ANKI_ADDONS_FOLDER/Anki-Search-Stats-ExtendedFor Windows:
mklink /D "PATH_TO_ANKI_ADDONS_FOLDER\Anki-Search-Stats-Extended" "PATH_TO_CLONED_REPO"run make to setup source files
make
Then every-time you make any changes run make again.
It is possible that you may run into issues with protoc on mac.
You need to make the file src/ts/proto and then generate the proto files by running
npm i
npx protoc \
-I anki/proto \
--es_out src/ts/proto \
--es_opt target=ts \
anki/proto/anki/*.proto \Then whenever you want to build changes
npm run buildI haven't actually tested this so good luck. Check the makefile for more information
Due to the way its set up you don't have to reload anki for javascript changes, you only have to run make/build again and reload the stats menu.
If you have any cool graph idea's then let me know or just pull request and make it yourself.
All files in this repository are licenced under "GPL-3.0-only"
Copyright 2023 Luc McGrady and contributors.