vkGetGroupStatGender: Loading data by gender of the community visitors

Description Usage Arguments Value Author(s) References Examples

Description

Allows you to download data on the gender of community visitors by date.

Usage

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
vkGetGroupStatGender(
  date_from    = Sys.Date() - 7, 
  date_to      = Sys.Date(), 
  group_id     = NULL, 
  interval     = "day",
  intervals_count = NULL,
  filters      = NULL,
  stats_groups = c("visitors", "reach", "activity"),
  username     = getOption("rvkstat.username"),
  api_version  = getOption("rvkstat.api_version"),
  token_path   = vkTokenPath(),
  access_token = getOption("rvkstat.access_token")
)

Arguments

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.

interval

Time intervals. Possible values: day, week, month, year, all.

intervals_count

Number of time intervals.

filters

A list of words separated by commas

stats_groups

Filter for getting data on a specific block of community statistics. Possible values: visitors, reach, activity.

username

Your vkontakte login.

api_version

Vkontakte API version.

token_path

Path to dir with credentials

access_token

API access tokens obtained using vkAuth or vkGetToken functions

Value

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. Gender

gender ("m" is male, "f" is female).

Author(s)

Alexey Seleznev

References

Documentation for API method stats.get: https://vk.com/dev/stats.get

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
## Not run: 
## auth
my_tok <- vkAuth(app_id = 1,app_secret = "H2Pk8htyFD8024mZaPHm")

## load data about users by gender
communityDataGender <- vkGetGroupStatGender(
                             date_from = "2016-01-01",
                             date_to = "2016-04-01",
                             group_id = 1,
                             access_token = my_tok$access_token)

## End(Not run)

rvkstat documentation built on Oct. 18, 2021, 5:07 p.m.