Python Forum

Full Version: How to read csv file update matplotlib column chart regularly
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hi all,

I want to read csv date and update column charts by matplotlib automatically.
As snapshots first time write log and update column chart by every failed item and then write second time fail log and update column chart by every failed item again(if failed item same add quantity of the failed item)and third time, fourth time......both updated chart.

The key is how to distinguish every failed item, quantity and updated charts.
you can use 'sched' the python event scheduler: https://docs.python.org/3/library/sched.html
(Jan-20-2023, 11:50 PM)Larz60+ Wrote: [ -> ]you can use 'sched' the python event scheduler: https://docs.python.org/3/library/sched.html

Thank you for your prompt reply, maybe that is not what I want.
I just want to sort out log file failed item name and quantity(log file continued write)update charts by matplotlib(only keep last chart, in log.xlsx is just a demo).
I am confusing how to distinguish failed item name and quantity dynamically.