session_count {reconstructr} | R Documentation |
Count the number of sessions in a sessionised dataset
Description
link{session_count}
counts the number of sessions in a sessionised
dataset, producing either a count for the overall dataset or on a per-user
basis (see below).
Usage
session_count(sessions, user_id = NULL)
Arguments
sessions |
a dataset of sessions, presumably generated by
|
user_id |
the column of |
Value
either a single integer value or a data.frame (see above).
Examples
#Load and sessionise the dataset
data("session_dataset")
sessions <- sessionise(session_dataset, timestamp, uuid)
# Calculate overall bounce rate
count <- session_count(sessions)
# Calculate session count on a per-user basis
per_user <- session_count(sessions, user_id = uuid)
[Package reconstructr version 2.0.4 Index]