Describe#
Eventstream#
- Eventstream.describe(session_col='session_id', raw_events_only=False)[source]#
Display general eventstream information. If
session_col
is present in eventstream, also output session statistics.- Parameters:
- session_colstr, default ‘session_id’
Specify name of the session column. If the column is present in the eventstream, session statistics will be added to the output.
- raw_events_onlybool, default False
If
True
- statistics will only be shown for raw events. IfFalse
- statistics will be shown for all events presented in your data.
- Returns:
- pd.DataFrame
A dataframe containing descriptive statistics for the eventstream.
See also
EventTimestampHist
Plot the distribution of events over time.
TimedeltaHist
Plot the distribution of the time deltas between two events.
UserLifetimeHist
Plot the distribution of user lifetimes.
Eventstream.describe_events
Show general eventstream events statistics.
Notes
All
float
values are rounded to 2.All
datetime
values are rounded to seconds.
See Eventstream user guide for the details.