Will not load the data properly
The way you are loading it:
files = glob.glob('youtube-dataset\\*.csv')
That doesn't work
you can only have one slash.
files = glob.glob('youtube-dataset\*.csv')
I tried 3 different platforms before I figured this out. I don't want others to have the same issue.
2 answers ( 0 marked as helpful)
You're a lifesaver
thanks!