Questions tagged [clickstream]

A clickstream is the recording of the parts of the screen a computer user clicks on while web browsing or using another software application.

A clickstream is the recording of the parts of the screen a computer user clicks on while web browsing or using another software application.A clickstream is a record of a user's activity on the Internet.

50 questions
4
votes
1 answer

How to create user paths from clickstream data

I have some clickstream data I'd like to attribution analyze in a particular way, but I need to get into a specific format for users that convert and those that don't. Reprex data: df <- structure(list(User_ID = c(2001, 2001, 2001, 2002, 2001, 2002,…
nycrefugee
  • 1,629
  • 1
  • 10
  • 23
3
votes
2 answers

How to Convert a Data Frame to a List for Clickstream Analysis

I am a novice R user and new to the forum. I have a data frame that I need to convert so that each row is a character vector. I want to remove the 0's from the data frame so that each row can have varying lengths. So in essence each row is a…
yanga
  • 43
  • 3
3
votes
0 answers

What is the standard way to implement a clickstream today?

Let us assume we have a website and, for the sake of argument, that the back end is written in Java. Let us also assume that we would like to capture clickstream data for users on our website. We would like to track various things, for example: …
ioreskovic
  • 5,531
  • 5
  • 39
  • 70
2
votes
0 answers

R generate random sample using higher order markov chain

is there a way to generate a random sample from a higher order markov chain? I used the package clickstream to estimate a 2nd order markov chain and i'm now trying to generate a sample from it. I understand how to do this from a transition matrix…
chrisjacques
  • 635
  • 1
  • 5
  • 17
2
votes
3 answers

Clickstream data analysis

I came across an interesting scenario called clickstream data analysis. All I know is what is clickstream data. I would like to know more about this and different scenarios in which it can be used in the best interests of the business and the set of…
Hemanth Annavarapu
  • 823
  • 3
  • 19
  • 37
1
vote
2 answers

Finding a missing value in a sequential data

Suppose I have this dataframe, df, in R: UserID <- c(1, 1, 1, 5, 5, 7, 7, 9, 9, 9) PathID <- c(1,2,3,1,2,1,2,1,2,3) Page <- c("home", "about", "services", "home", "pricing", "pricing", "home", "about", "home", "services") df <- data.frame(UserID,…
user2845095
  • 465
  • 2
  • 9
1
vote
2 answers

User paths in R

The following is a sample of the dataset I am working on. I am trying to assess which users create a request on the contact form and are successful. So, the button click that tells me that the user has begun a request is "createrequestButtonClick"…
user2845095
  • 465
  • 2
  • 9
1
vote
2 answers

Lag or lead to assess user paths in R

I have the following…
user2845095
  • 465
  • 2
  • 9
1
vote
2 answers

Calculating Session Duration in R

I have a dataset with a session id, user id, TimeStamp in UNIX (which I converted using lubridate), and the converted TimeStamp column. Session User ts_UNIX TimeStamp 123 345 UNIX Timestamp 14-06-2022 17:44:32 123 345 UNIX…
user2845095
  • 465
  • 2
  • 9
1
vote
1 answer

Website Click stream flow + customer 360 using AWS Kinesis Firehose

We are trying to implement a clickstream flow of our e-commerce on AWS. The clickstream will catch all actions done by 'Anonymous' users. Anonymous users are tracked via a UUID , generated during their first visit , that is stored in a cookie. We…
1
vote
1 answer

Analyzing Clickstream data through firebase

Let me pitch my situation and see what you think the best solution is. Problem: Trying to analyze clickstream data. Current Situation: Currently we have data flowing into google firebase to analyze app activity. it works great to measure MUA and…
Zack Widdoss
  • 69
  • 2
  • 8
1
vote
1 answer

Given clickstream splitin time interval

I get a clickstream with a fields user_id , site_id, datetime - timestamp time of click Session counts all clicks in the interval of 30 mins How can I make SQL query with output of user_id site_id session_start_time session_end_time
Gani
  • 29
  • 4
1
vote
1 answer

Getting clickstream sequence from data frame

I have a clickstream .csv data file in this format : Step_Name Session_ID p-1 1 p-2 1 defer 1 p-1 2 p-3 2 buy 2 p-4 3 …
user75252
  • 169
  • 2
  • 2
  • 13
1
vote
0 answers

How to find probability of subsequences obtained from sequences in the given dataset?

I have a dataset(CSV file) of sequence of links with their order placed status for each sequence. I have got the subsequences with their count with the help of prefixSpan algorithm(as described here). But I also want to find probability of each…
1
vote
0 answers

Divolte collector not returning default values

I'm new to divolte collector. After setting it up to track custom events, for some reason divolte collector does not track the default values it tracks from the code. Only either one words, leaving everything to default or mapping custom fields one…
Jaskaran Singh Puri
  • 729
  • 2
  • 11
  • 37
1
2 3 4