Plotting string values acquired from CSV stream on Python
问题 I don't have strong Python & programming background, and currently I am stuck on plotting data/values which I acquired from csv stream. Currently, this is what I have to just print the values streamed from .csv (real-time data from sensor), which I acquired from here: def follow(thefile): thefile.seek(0,2) #file handling on the data stream while True: line = thefile.readline() if not line: time.sleep(0.1) continue yield line logfile = open("C:/Users/ra/Desktop/mon23.csv","r") loglines =