Displaying 1 result from an estimated 1 matches for "state_trans_freq".
Did you mean:
state_trans_freqs
2009 Feb 26
0
How do I retrieve column and row names after comparing two matrices?
...(transitions)
lfreq<-list(State_transitions=unique_transitions)
lf<-as.data.frame(lfreq)
plot(lf)
write.table(lf,"C:\\
state_transitions.txt",sep="\t",quote=FALSE,row.names=TRUE)
lf
}
state_trans_freqs()
The result is reported as:
1 1,1 1,0
How can I identify the column name (BC1, BC2) and row name (name3,
name3) that refers to this unique transition? Should I change my import
and data parsing?
cat("Reading Test calls.\n")...