Skip to main content

Questions tagged [sequence-analysis]

Sequence analysis (in the social sciences) is the analysis of how people or other units of study move from one state to another (for example, single-->married-->widowed, unemployed-->employed-->retired) over the course of their lifespan.

sequence-analysis
2 votes
1 answer
118 views

Fitting a VLMC to very long sequences

I am trying to fit a VLMC to a dataset where the longest sequence is 296 states. I do it as shown below: # Load libraries library(PST) library(RCurl) library(TraMineR) # Load and transform data x &...
histelheim's user avatar
  • 5,018
2 votes
3 answers
182 views

How to get the largest possible column sequence with the least possible row NAs from a huge matrix?

I want to select columns from a data frame so that the resulting continuous column-sequences are as long as possible, while the number of rows with NAs is as small as possible, because they have to be ...
jay.sf's user avatar
  • 70.8k
1 vote
2 answers
888 views

Traminer substitution cost

I have a logical problem with the transition cost matrix. I am working on sequences dissimilarity using the R package Traminer. I try to give you a simple example (very simple, but I hope useful to ...
Giampiero's user avatar
1 vote
1 answer
469 views

How to compute dissimilarities between sequences when sequences contain gaps?

I want to cluster sequences with optimal matching with TraMineR::seqdist() from data that contains missings, i.e. sequences containing gaps. library(TraMineR) data(ex1) sum(is.na(ex1)) # [1] 38 sq &...
jay.sf's user avatar
  • 70.8k