我想了解更多关于用户在登录区域的行为。因此,我存储用户所做的每个操作。示例:
User1: (main page) -> (login) -> (view posts) -> (view page of user) -> (logout)
User2: (main page) -> (login) -> (view posts) -> (write post) -> (logout)
User3: (main page) -> (login) -> (view settings) -> (change password) -> (logout)现在我想在图表中显示这些行为。在此,边缘应反映频率:
(write post) - (logout)
/
(main-page) ≡ (login) = (view posts) - (view page of user) - (logout)
\
(view settings) - (change password) - (logout)完成这一任务的典型工具是什么?我的工具应该生成一种典型的数据格式吗?如果有个起点就太好了。
https://stackoverflow.com/questions/34725770
复制相似问题