MyNixOS website logo
Description

Wrapper for 'YouTube Analytics' API.

Simplify working with the 'YouTube Analytics' API <https://developers.google.com/youtube/analytics>. Collect traffic, time period, location, and other data quickly and efficiently. For working with the 'YouTube Data' API, use the 'tuber' 'R' Package.

YTAnalytics: R Wrapper for YouTube Analytics API

CRAN_Status_Badge

Overview

YTAnalytics is an R package designed to simplify data collection using the YouTube Analytics API. You can use this to get channel, playlist, and video data for your YouTube channel - just like what is found in YouTube Studio. Helpful data includes:

  • Video/Playlist/Channel Statistics
  • Daily/Monthly Views
  • Location Data (Country/City)
  • Demographics (Age/Gender)
  • Devices
  • Traffic Sources
  • Sharing Services
  • etc. etc.

Details

YTAnalytics is built around one main function - analytics_request() which acts as the wrapper for the YouTube Analytics API. youtube_GET simplifies making GET requests using httr::GET and structuring the returned data in a data.frame.

data_channel_request(), data_playlist_request(), data_playlistItem_request(), and data_video_request() are wrappers for the YouTube Data API, meant only to help in getting some high level data or returning lists of videos in a channel or playlist. For this purpose, added functionality is not present. For more YouTube Data API functionality, refer here for the tuber package. To learn more about the YouTube Analytics API or to experiment with their built-in app, check them out here.

Installation

The most up-do-date version can be found on Github:

# install.packages("devtools")
devtools::install_github("davisj95/YTAnalytics")

Authentication

In order to use the YouTube APIs, you need do the following:

  1. Create a Project in your Google Developers Console.
  2. Enable the YouTube Data and YouTube Analytics APIs in the developer library.
  3. Create an OAuth consent screen.
  4. Create OAuth authorization credentials. A more thorough walkthrough of this process can be found here (coming soon).

Once you have your client Id and Secret, use them in youtube_oauth() like the following:

youtube_oauth(clientId = YOURAPPID, clientSecret = YOURAPPSECRET)

An authentication token is created (by default called .httr-oauth) and saved in your working directory.

How To Use

Once authenticated, there are many functions to choose from. Functions are mostly categorized in three categories: channel, 'playlist', and video data. Each function leads with the category name followed by the particular function. For example:

Channel

# To get views, averageViewDuration, estimatedMinutesWatched, shares, likes, 
# dislikes, comments, subscribersGained & subscribersLost
# From Jan 1, 2000 - Today
channel_stats()

# For Jan 1, 2020 - Jan 1, 2021
channel_stats(startDate = "2020-01-01", endDate = "2021-01-01")

# To get only views, averageViewDuration and estimatedMinutesWatched for all time
channel_stats(metrics = "views,averageViewDuration,estimatedMinutesWatched").  #Note that there are no spaces between metrics

Playlist

myPlaylist <- YOURPLAYLISTID

playlist_daily_views(playlistId = myPlaylist)

playlist_live_onDemand(playlistId = myPlaylist)

Video

myVideo <- YOURVIDEOID

video_audience_retention(videoId = myVideo)

video_top_countries(videoId = myVideo)

If none of these pre-built functions do quite what you need, you can always refer back to the analytics_request() function for more custom requests.

analytics_request(dimensions = "country",
                  metrics = "views",
                  filter = "video==YOURVIDEO",
                  sort = "-views",
                  maxResults = 50)

All Functions Currently Available

  • Authentication

    • youtube_oauth()
  • Get Daily/Monthly Views

    • channel_time_period()
    • playlist_time_period()
    • video_time_period()
  • Get Live vs. On Demand Views

    • channel_live_onDemand()
    • playlist_live_onDemand()
    • video_live_onDemand()
  • Get Playback Location

    • channel_playback_location()
    • playlist_playback_location()
    • video_playback_location()
  • Get Overall Stats

    • channel_stats()
    • playlist_stats()
    • video_stats()
  • Get Countries

    • channel_countries()
    • playlist_countries()
    • video_countries()
  • Get Cities

    • channel_cities()
    • playlist_cities()
    • video_cities()
  • Get Demographics (Age & Gender)

    • channel_demographics()
    • playlist_demographics()
    • video_demographics()
  • Get Devices

    • channel_devices()
    • playlist_devices()
    • video_devices()
  • Get Traffic Sources

    • channel_traffic_sources()
    • playlist_traffic_sources()
    • video_traffic_sources()
  • Get Traffic Details

    • channel_traffic_details()
    • playlist_traffic_details()
    • video_traffic_details()
  • Get Top Sharing Services

    • channel_top_sharing_services()
    • playlist_top_sharing_services()
    • video_top_sharing_services()
  • Get Subscription Status

    • channel_subscription_status()
    • playlist_subscription_status()
    • video_subscription_status()
  • Get Top Videos

    • channel_top_videos()
    • playlist_top_videos()
  • Get List of Videos

    • channel_videos()
    • playlist_videos()
  • Get Audience Retention Ratios

    • video_audience_retention()
  • Get Video Metadata (Title, Description, etc)

    • video_metadata()
  • Wrapper for Analytics/Data APIS

    • analytics_request()
    • data_channel_request()
    • data_playlist_request()
    • data_playlistItem_request()
    • data_video_request()
Metadata

Version

0.1.0

License

Unknown

Platforms (75)

    Darwin
    FreeBSD 13
    Genode
    GHCJS
    Linux
    MMIXware
    NetBSD
    none
    OpenBSD
    Redox
    Solaris
    WASI
    Windows
Show all
  • aarch64-darwin
  • aarch64-genode
  • aarch64-linux
  • aarch64-netbsd
  • aarch64-none
  • aarch64_be-none
  • arm-none
  • armv5tel-linux
  • armv6l-linux
  • armv6l-netbsd
  • armv6l-none
  • armv7a-darwin
  • armv7a-linux
  • armv7a-netbsd
  • armv7l-linux
  • armv7l-netbsd
  • avr-none
  • i686-cygwin
  • i686-darwin
  • i686-freebsd13
  • i686-genode
  • i686-linux
  • i686-netbsd
  • i686-none
  • i686-openbsd
  • i686-windows
  • javascript-ghcjs
  • loongarch64-linux
  • m68k-linux
  • m68k-netbsd
  • m68k-none
  • microblaze-linux
  • microblaze-none
  • microblazeel-linux
  • microblazeel-none
  • mips-linux
  • mips-none
  • mips64-linux
  • mips64-none
  • mips64el-linux
  • mipsel-linux
  • mipsel-netbsd
  • mmix-mmixware
  • msp430-none
  • or1k-none
  • powerpc-netbsd
  • powerpc-none
  • powerpc64-linux
  • powerpc64le-linux
  • powerpcle-none
  • riscv32-linux
  • riscv32-netbsd
  • riscv32-none
  • riscv64-linux
  • riscv64-netbsd
  • riscv64-none
  • rx-none
  • s390-linux
  • s390-none
  • s390x-linux
  • s390x-none
  • vc4-none
  • wasm32-wasi
  • wasm64-wasi
  • x86_64-cygwin
  • x86_64-darwin
  • x86_64-freebsd13
  • x86_64-genode
  • x86_64-linux
  • x86_64-netbsd
  • x86_64-none
  • x86_64-openbsd
  • x86_64-redox
  • x86_64-solaris
  • x86_64-windows