This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # This script is destined to be executed in a directory containing a series of files with a 'yyyymmdd' naming pattern | |
| # e.g. "20240621_212441.wav". The script will parse the date in each filename and plot the number of files per year-month. | |
| import os | |
| import fnmatch | |
| import matplotlib.pyplot as plt | |
| # create empty list | |
| list1=[] |
NewerOlder