Method: Yt::Models::VideoGroup#annotation_clicks
- Defined in:
- lib/yt/models/video_group.rb
#annotation_clicks(options = {}) ⇒ Hash<Date, Integer>, ...
Returns the annotation_clicks grouped by the given dimension.
Examples:
Get the annotation_clicks for each day of last week:
Get the annotation_clicks for each day of last week:
resource.annotation_clicks since: 2.weeks.ago, until: 1.week.ago, by: :day
# => {Wed, 8 May 2014 => 12.0, Thu, 9 May 2014 => 34.0, …}
Get the annotation_clicks for this and last month:
Get the annotation_clicks for this and last month:
resource.annotation_clicks since: 1.month.ago, by: :month
# => {Wed, 01 Apr 2014..Thu, 30 Apr 2014 => 12.0, Fri, 01 May 2014..Sun, 31 May 2014 => 34.0, …}
Get the annotation_clicks for the whole last week:
Get the annotation_clicks for the whole last week:
resource.annotation_clicks since: 2.weeks.ago, until: 1.week.ago, by: :range
# => {total: 564.0}
Get the annotation_clicks for the whole last week in Texas only:
Get the annotation_clicks for the whole last week in Texas only:
resource.annotation_clicks since: 2.weeks.ago, until: 1.week.ago, by: :range, in: {state: 'TX'}
# => {total: 19.0}
Parameters:
-
options
(Hash)
(defaults to: {})
—
the time-range and dimensions for the annotation_clicks.
Options Hash (options):
-
:by
(Symbol)
— default:
:day
—
The dimension to collect annotation_clicks by. Accepted values are:
:day
,:month
, :range
. -
:since
(#to_date)
—
The first day of the time-range. Also aliased as
:from
. -
:until
(#to_date)
—
The last day of the time-range. Also aliased as
:to
. -
:in
(<String, Hash>)
—
The location to limit the annotation_clicks to. Can either be the two-letter ISO-3166-1 code of a country, such as “US”, or a Hash that either contains the
:country
key, such as {country: “US”} or the:state
key, such as {state: “TX”}. Note that YouTube API only provides data for US states.
Returns:
-
(Hash<Date, Integer>)
—
if grouped by day, the annotation_clicks for each day in the time-range.
-
(Hash<Range<Date, Date>, Integer>)
—
if grouped by month, the annotation_clicks for each month in the time-range.
-
(Hash<Symbol, Integer>)
—
if grouped by range, the annotation_clicks for the entire time-range (under the key
:total
).
81 |
# File 'lib/yt/models/video_group.rb', line 81 has_report :annotation_clicks, Integer |