Description Usage Arguments Value Author(s) Examples
Read session data saved by the Meditate function and summarize this information.
| 1 | ReadSessions(file = "meditate.csv", tz = Sys.timezone())
 | 
| file | 'character' string or 'connection'. File to read session information. | 
| tz | 'character' string.
Time zone to format date-time values,
see  | 
An object of class 'sessions' that inherits behavior from the 'data.frame' class.
A print method is provided for this class.
Class 'sessions' is a data table with 2 variables:
start_date is of class 'POSIXct"
and represents the date-time at the beginning of the meditation session; and
duration is of class 'difftime'
and represents the length of the session.
Its attribute list includes:
current_streakcurrent streak in days.
longest_streaklongest streak in days.
total_practicenumber of days that included at least one session.
average_dayaverage session time per day in minutes.
average_sessionaverage session time in minutes.
total_timetime meditating in days.
sincedate of first session.
J.C. Fisher
| 1 2 3 4 5 | file <- system.file("extdata/meditate-ex.csv", package = "meditate")
x <- meditate::ReadSessions(file)
x
print.data.frame(x)
 | 
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.