|
step |
event |
usr_cnt |
usr_cnt_total |
perc |
color |
index |
sorting |
order_by |
0 |
1 |
catalog |
2686 |
3751 |
71.61 |
(80, 190, 151) |
0 |
100 |
100 |
1 |
1 |
main |
1065 |
3751 |
28.39 |
(228, 101, 92) |
1 |
100 |
100 |
2 |
2 |
catalog |
1670 |
3751 |
44.52 |
(80, 190, 151) |
2 |
100 |
0 |
3 |
2 |
main |
609 |
3751 |
16.24 |
(228, 101, 92) |
3 |
100 |
1 |
4 |
2 |
product2 |
429 |
3751 |
11.44 |
(53, 58, 62) |
4 |
100 |
100 |
.. code-block:: python
# StepSankey graph edges
stream\
.step_sankey(show_plot=False)\
.values[1]
.. raw:: html
|
step |
event |
next_event |
usr_cnt |
time_to_next_sum |
index |
next_step |
next_index |
0 |
1 |
catalog |
catalog |
869 |
0 days 07:05:31.308030 |
0 |
2 |
2 |
1 |
1 |
catalog |
main |
452 |
2228 days 01:07:48.656824 |
0 |
2 |
3 |
2 |
1 |
catalog |
product2 |
429 |
0 days 01:12:27.870236 |
0 |
2 |
4 |
3 |
1 |
catalog |
cart |
337 |
0 days 02:31:57.294871 |
0 |
2 |
5 |
4 |
1 |
catalog |
ENDED |
336 |
0 days 00:00:00 |
0 |
2 |
7 |
.. todo::
Briefly explain the meaning of the columns @v.kukushkin
params
~~~~~~
:py:meth:`StepSankey.params
` property returns a dictionary containing all the parameters (including the defaults) related to the current state of the StepSankey object:
.. code-block:: python
# StepSankey graph nodes
stream\
.step_sankey(show_plot=False)\
.params
.. parsed-literal::
{'max_steps': 10,
'threshold': 0.05,
'sorting': None,
'targets': None,
'autosize': True,
'width': None,
'height': None}