是否有办法查看特定信任级别的用户最常使用的类别?
我特别想知道新用户最有可能在哪些类别中发起话题,以及他们通常在哪里发帖,同时还想了解其他信任级别用户的行为模式。
例如,普通用户在升级之前发布的帖子和发起的话题,要么不应被计入统计,要么应计入其之前的信任级别。
我的理论是,新用户最有可能在提供帮助的类别中发帖(尤其是发起话题),而普通用户则更频繁地使用类别进行深度讨论。
是否有办法查看特定信任级别的用户最常使用的类别?
我特别想知道新用户最有可能在哪些类别中发起话题,以及他们通常在哪里发帖,同时还想了解其他信任级别用户的行为模式。
例如,普通用户在升级之前发布的帖子和发起的话题,要么不应被计入统计,要么应计入其之前的信任级别。
我的理论是,新用户最有可能在提供帮助的类别中发帖(尤其是发起话题),而普通用户则更频繁地使用类别进行深度讨论。
Sounds like a job for the Data Explorer plugin! Very useful, you can learn more about it here:
Here’s a stab at a SQL query that does something like this — it takes trust_level as a parameter, and then returns a sorted list of the # of posts created in each category by users w/ that trust level (disclaimer, I’m a SQL novice, modify as needed!):
-- [params]
-- int :trust_level = 1
WITH topic_categories AS
(SELECT
t.id topic_id,
t.user_id,
t.created_at,
t.score,
c.id category_id,
c.name category_name
FROM
topics t
LEFT JOIN categories c
ON t.category_id = c.id
)
SELECT
count(tc.*) count,
tc.category_id
FROM
users u
LEFT JOIN topic_categories tc
ON u.id = tc.user_id
WHERE
tc.created_at IS NOT NULL
AND tc.category_id IS NOT NULL
AND u.trust_level = :trust_level
GROUP BY
tc.category_id
ORDER BY count DESC
That’s something I’d also be very interested in.
Recently I asked a similar question and it seems like out-of-the-box metrics for user interactions are coming soon to the admin dashboard 2.0 ![]()
Not sure if this specific feature would also be included; perhaps @HAWK might also be able to confirm that.
The dashboard won’t specifically include this data. My challenge is to simplify the dashboard but make it useful for all community types. For instance, CoP CMs need very different data to support community CMs. TL data is of very little (if any) relevance to the latter.
What we are planning as a compromise is to surface approved data explorer queries via the dashboard so that mods have access.
Here is an early mockup: