Skip to content

minimaxir/youtube-category-duration-chart

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 

Repository files navigation

youtube-category-duration

Code and data needed to reproduce The Relationship Between YouTube Video Category and Length of the Video

Due to size (3.7MB), data must be downloaded from this Dropbox URL.

Data obtained from my scraped database of YouTube submission metadata with this SQL query:

SELECT category,
	duration - 1 as video_duration,
	COUNT(category) as num_videos
FROM yt_videos
WHERE duration > 0
GROUP BY category, video_duration

Requires packages declared at beginning of Rstart.R. Fonts will only render if code is run on OS X.

About

Code and data needed to reproduce The Relationship Between YouTube Video Category and Length of the Video

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages