├── .Rbuildignore ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── NAMESPACE ├── R ├── analytics.R ├── auth.R ├── misc.R ├── options.R ├── youtubeAnalytics_functions.R └── youtubeAnalytics_objects.R ├── README.md ├── man ├── BatchReport.Rd ├── BatchReport.outputs.Rd ├── BatchReport.timeSpan.Rd ├── BatchReportDefinition.Rd ├── BatchReportDefinitionList.Rd ├── BatchReportList.Rd ├── Group.Rd ├── Group.contentDetails.Rd ├── Group.snippet.Rd ├── GroupItem.Rd ├── GroupItem.resource.Rd ├── GroupItemListResponse.Rd ├── GroupListResponse.Rd ├── ResultTable.Rd ├── ResultTable.columnHeaders.Rd ├── batchReportDefinitions.list.Rd ├── batchReports.list.Rd ├── groupItems.delete.Rd ├── groupItems.insert.Rd ├── groupItems.list.Rd ├── groups.delete.Rd ├── groups.insert.Rd ├── groups.list.Rd ├── groups.update.Rd ├── is.NullOb.Rd ├── rmNullObs.Rd ├── youtubeAnalytics_googleAuthR.Rd ├── yt_analytics.Rd └── yt_auth.Rd ├── tests ├── testthat.R └── testthat │ └── test_youtube.R └── youtubeAnalyticsR.Rproj /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | 5 | .httr-oauth 6 | -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | YEAR: 2016 2 | COPYRIGHT HOLDER: Sunholo Ltd. 3 | 4 | -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/NAMESPACE -------------------------------------------------------------------------------- /R/analytics.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/analytics.R -------------------------------------------------------------------------------- /R/auth.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/auth.R -------------------------------------------------------------------------------- /R/misc.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/misc.R -------------------------------------------------------------------------------- /R/options.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/options.R -------------------------------------------------------------------------------- /R/youtubeAnalytics_functions.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/youtubeAnalytics_functions.R -------------------------------------------------------------------------------- /R/youtubeAnalytics_objects.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/R/youtubeAnalytics_objects.R -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/README.md -------------------------------------------------------------------------------- /man/BatchReport.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReport.Rd -------------------------------------------------------------------------------- /man/BatchReport.outputs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReport.outputs.Rd -------------------------------------------------------------------------------- /man/BatchReport.timeSpan.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReport.timeSpan.Rd -------------------------------------------------------------------------------- /man/BatchReportDefinition.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReportDefinition.Rd -------------------------------------------------------------------------------- /man/BatchReportDefinitionList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReportDefinitionList.Rd -------------------------------------------------------------------------------- /man/BatchReportList.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/BatchReportList.Rd -------------------------------------------------------------------------------- /man/Group.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/Group.Rd -------------------------------------------------------------------------------- /man/Group.contentDetails.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/Group.contentDetails.Rd -------------------------------------------------------------------------------- /man/Group.snippet.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/Group.snippet.Rd -------------------------------------------------------------------------------- /man/GroupItem.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/GroupItem.Rd -------------------------------------------------------------------------------- /man/GroupItem.resource.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/GroupItem.resource.Rd -------------------------------------------------------------------------------- /man/GroupItemListResponse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/GroupItemListResponse.Rd -------------------------------------------------------------------------------- /man/GroupListResponse.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/GroupListResponse.Rd -------------------------------------------------------------------------------- /man/ResultTable.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/ResultTable.Rd -------------------------------------------------------------------------------- /man/ResultTable.columnHeaders.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/ResultTable.columnHeaders.Rd -------------------------------------------------------------------------------- /man/batchReportDefinitions.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/batchReportDefinitions.list.Rd -------------------------------------------------------------------------------- /man/batchReports.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/batchReports.list.Rd -------------------------------------------------------------------------------- /man/groupItems.delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groupItems.delete.Rd -------------------------------------------------------------------------------- /man/groupItems.insert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groupItems.insert.Rd -------------------------------------------------------------------------------- /man/groupItems.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groupItems.list.Rd -------------------------------------------------------------------------------- /man/groups.delete.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groups.delete.Rd -------------------------------------------------------------------------------- /man/groups.insert.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groups.insert.Rd -------------------------------------------------------------------------------- /man/groups.list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groups.list.Rd -------------------------------------------------------------------------------- /man/groups.update.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/groups.update.Rd -------------------------------------------------------------------------------- /man/is.NullOb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/is.NullOb.Rd -------------------------------------------------------------------------------- /man/rmNullObs.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/rmNullObs.Rd -------------------------------------------------------------------------------- /man/youtubeAnalytics_googleAuthR.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/youtubeAnalytics_googleAuthR.Rd -------------------------------------------------------------------------------- /man/yt_analytics.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/yt_analytics.Rd -------------------------------------------------------------------------------- /man/yt_auth.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/man/yt_auth.Rd -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test_youtube.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/tests/testthat/test_youtube.R -------------------------------------------------------------------------------- /youtubeAnalyticsR.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/MarkEdmondson1234/youtubeAnalyticsR/HEAD/youtubeAnalyticsR.Rproj --------------------------------------------------------------------------------