Last answered:

01 Nov 2022

Posted on:

06 Apr 2022

5

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)
Posted on:

21 Jun 2022

0

You're a lifesaver

Posted on:

01 Nov 2022

0

thanks!

Submit an answer