Currently, metrics page provides the most recently used cards over x time period. This also includes data regarding most picked cards based only on Will attribute, only on will cost, card type etc.
Request to filter this further, for example, have the metrics page display all the same data, but based on Wind will only, or based on Wind will and if the card type is 'Resonator'
https://www.forceofwind.online/metrics
Currently, metrics page provides the most recently used cards over x time period. This also includes data regarding most picked cards based only on Will attribute, only on will cost, card type etc.
Request to filter this further, for example, have the metrics page display all the same data, but based on Wind will only, or based on Wind will and if the card type is 'Resonator'
Could be related to how the metrics function within views.py handles the card picks https://github.com/Force-of-Wind/fowsim/blob/main/cardDatabase/views.py
Metrics related to / calculated by dailyDeckMetricCalculations.py script
blocker - how to recreate metrics data in local? - Possible solution, don't, just create fake data and use that as 'metrics'
could go to views.py file, replace the data for 'most_picked_cards' to Card.objects.filter(get_set_query(['MOA']) & Q(rarity='R')),
e.g.
modify the metrics.html to view the cards above (from set MOA, rarity 'R'
in theory, within the metrics function of views.py, adding .filter() should allow filtering needed, something like: