Class: Google::Apis::AnalyticsdataV1beta::CohortSpec
- Inherits:
-
Object
- Object
- Google::Apis::AnalyticsdataV1beta::CohortSpec
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/analyticsdata_v1beta/classes.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb,
lib/google/apis/analyticsdata_v1beta/representations.rb
Overview
The specification of cohorts for a cohort report. Cohort reports create a time
series of user retention for the cohort. For example, you could select the
cohort of users that were acquired in the first week of September and follow
that cohort for the next six weeks. Selecting the users acquired in the first
week of September cohort is specified in the cohort
object. Following that
cohort for the next six weeks is specified in the cohortsRange
object. For
examples, see Cohort Report Examples. The report
response could show a weekly time series where say your app has retained 60%
of this cohort after three weeks and 25% of this cohort after six weeks. These
two percentages can be calculated by the metric cohortActiveUsers/
cohortTotalUsers
and will be separate rows in the report.
Instance Attribute Summary collapse
-
#cohort_report_settings ⇒ Google::Apis::AnalyticsdataV1beta::CohortReportSettings
Optional settings of a cohort report.
-
#cohorts ⇒ Array<Google::Apis::AnalyticsdataV1beta::Cohort>
Defines the selection criteria to group users into cohorts.
-
#cohorts_range ⇒ Google::Apis::AnalyticsdataV1beta::CohortsRange
Configures the extended reporting date range for a cohort report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ CohortSpec
constructor
A new instance of CohortSpec.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ CohortSpec
Returns a new instance of CohortSpec.
456 457 458 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 456 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cohort_report_settings ⇒ Google::Apis::AnalyticsdataV1beta::CohortReportSettings
Optional settings of a cohort report.
Corresponds to the JSON property cohortReportSettings
441 442 443 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 441 def cohort_report_settings @cohort_report_settings end |
#cohorts ⇒ Array<Google::Apis::AnalyticsdataV1beta::Cohort>
Defines the selection criteria to group users into cohorts. Most cohort
reports define only a single cohort. If multiple cohorts are specified, each
cohort can be recognized in the report by their name.
Corresponds to the JSON property cohorts
448 449 450 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 448 def cohorts @cohorts end |
#cohorts_range ⇒ Google::Apis::AnalyticsdataV1beta::CohortsRange
Configures the extended reporting date range for a cohort report. Specifies an
offset duration to follow the cohorts over.
Corresponds to the JSON property cohortsRange
454 455 456 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 454 def cohorts_range @cohorts_range end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
461 462 463 464 465 |
# File 'lib/google/apis/analyticsdata_v1beta/classes.rb', line 461 def update!(**args) @cohort_report_settings = args[:cohort_report_settings] if args.key?(:cohort_report_settings) @cohorts = args[:cohorts] if args.key?(:cohorts) @cohorts_range = args[:cohorts_range] if args.key?(:cohorts_range) end |