Displaying 1 result from an estimated 1 matches for "8562,13".
Did you mean:
856,13
2011 Oct 20
1
Constructing the transition pair using loop function and paste()
...39;,'K','L','B','X','C','V','S','F','X','G','T','H','H','H','R','A','E','D','C')
y <- c(rep(0293,8), rep(0498,6), rep(6847,10), rep(6209,4), rep(8562,13),
rep(4596,6), rep(2857,2), rep(6178,3), rep(6018,5), rep(5629,4),
rep(7535,4))
mydata <- as.data.frame(cbind(x,y))
names(mydata) <- c('actions', 'agents')
mydata
for (i in 1:length(unique(mydata$agents))){ # decompose the data
frame by agents
agent.i <- mydata...