mirror of
https://github.com/ankitects/anki.git
synced 2025-09-21 07:22:23 -04:00
option to limit graphs to selective study
This commit is contained in:
parent
329ab99ff7
commit
b45f071581
1 changed files with 14 additions and 7 deletions
|
@ -55,12 +55,13 @@ def graphsAvailable():
|
||||||
|
|
||||||
class DeckGraphs(object):
|
class DeckGraphs(object):
|
||||||
|
|
||||||
def __init__(self, deck, width=8, height=3, dpi=75):
|
def __init__(self, deck, width=8, height=3, dpi=75, selective=True):
|
||||||
self.deck = deck
|
self.deck = deck
|
||||||
self.stats = None
|
self.stats = None
|
||||||
self.width = width
|
self.width = width
|
||||||
self.height = height
|
self.height = height
|
||||||
self.dpi = dpi
|
self.dpi = dpi
|
||||||
|
self.selective = selective
|
||||||
|
|
||||||
def calcStats (self):
|
def calcStats (self):
|
||||||
if not self.stats:
|
if not self.stats:
|
||||||
|
@ -72,13 +73,19 @@ class DeckGraphs(object):
|
||||||
lowestInDay = 0
|
lowestInDay = 0
|
||||||
self.endOfDay = self.deck.failedCutoff
|
self.endOfDay = self.deck.failedCutoff
|
||||||
t = time.time()
|
t = time.time()
|
||||||
young = self.deck.s.all("""
|
young = """
|
||||||
select interval, combinedDue from cards
|
select interval, combinedDue from cards c
|
||||||
where relativeDelay between 0 and 1 and type >= 0 and interval <= 21""")
|
where relativeDelay between 0 and 1 and type >= 0 and interval <= 21"""
|
||||||
mature = self.deck.s.all("""
|
mature = """
|
||||||
select interval, combinedDue
|
select interval, combinedDue
|
||||||
from cards where relativeDelay = 1 and type >= 0 and interval > 21""")
|
from cards c where relativeDelay = 1 and type >= 0 and interval > 21"""
|
||||||
|
if self.selective:
|
||||||
|
young = self.deck._cardLimit("revActive", "revInactive",
|
||||||
|
young)
|
||||||
|
mature = self.deck._cardLimit("revActive", "revInactive",
|
||||||
|
mature)
|
||||||
|
young = self.deck.s.all(young)
|
||||||
|
mature = self.deck.s.all(mature)
|
||||||
for (src, dest) in [(young, daysYoung),
|
for (src, dest) in [(young, daysYoung),
|
||||||
(mature, daysMature)]:
|
(mature, daysMature)]:
|
||||||
for (interval, due) in src:
|
for (interval, due) in src:
|
||||||
|
|
Loading…
Reference in a new issue