Description Usage Arguments Value Author(s) Examples
View source: R/vkGetGroupStatAge.R
Load data about community visitors by age group (12-18, 18-21, 21-24, 24-27, 27-30, 30-35, 35-45, 45-100) on dates.
1 2 3 | vkGetGroupStatAge(date_from = Sys.Date(),
date_to = Sys.Date(),
group_id = NULL, access_token = NULL)
|
date_from |
The starting date of the displayed statistics in the format YYYY-MM-DD. |
date_to |
The end date of the displayed statistics in the format YYYY-MM-DD. |
group_id |
Community ID. |
access_token |
API access token, obtained using the functions vkAuth or vkGetToken |
Date frame with statistics on community visitors with the following values:
1. Date |
the date for which statistics are given. |
2. Visitors |
number of unique visitors. |
3. AgeGroup |
age interval. |
Alexey Seleznev
1 2 3 4 5 6 7 8 9 10 11 | ## Not run:
## auth
my_tok <- vkAuth(app_id = 1,app_secret = "H2Pk8htyFD8024mZaPHm")
## Get statistics on age groups of visitors
communityDataAge <- vkGetGroupStatAge(date_from = "2016-01-01",
date_to = "2016-04-01",
group_id = 1,
access_token = my_tok$access_token)
## End(Not run)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.