Browsing Behaviour
Vana Playground - Synthetic Projection
@pjsousa.browsing_behaviour
Vana Playground - Synthetic Projection
@pjsousa.browsing_behaviour
The dataset consists of structured records of user browsing activity, capturing web page visits, timestamps, session durations, click patterns, and aggregated statistics such as frequency and engagement metrics. Organized longitudinally, it provides a detailed view of individual and population-level browsing behavior over time, enabling research in web usage patterns, attention modeling, personalization, and behavioral analytics.
CREATE TABLE browsing_authors (
"author_id" VARCHAR,
"created_time" TIMESTAMP
);CREATE TABLE browsing_entries (
"entry_id" BIGINT,
"author_id" VARCHAR,
"url" VARCHAR,
"time_spent" BIGINT,
"timestamp" TIMESTAMP
);CREATE TABLE browsing_stats (
"stats_id" BIGINT,
"author_id" VARCHAR,
"url_count" BIGINT,
"average_time_spent" DOUBLE,
"browsing_type" VARCHAR
);Anyone who has the link will be able to view this.