-
Hello again. I am trying to estimate a model with I can reproduce the error I am encountering with the Social Evolution data. Here it is:
This code outputs I have followed the error a little in debug mode. It all comes down to this anonymous function, where the
I would appreciate any help. I honestly suspect this may be a bug in the aforementioned function because I cannot see anything wrong in the network I pass to this effect. However, I am hesitant reporting it since I may just be missing something. Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments 3 replies
-
Hi @non87, Maybe an additional description of what you expect to find using this effect would be helpful (or maybe what you understand it does). ## Mixed networks
mixedTrans(network = list(network1, network2), window = Inf,
ignoreRep = FALSE, transformFun = identity)
mixedCycle(network = list(network1, network2), window = Inf,
ignoreRep = FALSE, transformFun = identity)
mixedClSender(network = list(network1, network2), window = Inf,
ignoreRep = FALSE, transformFun = identity)
mixedClReceiver(network = list(network1, network2), window = Inf,
ignoreRep = FALSE, transformFun = identity) I suspect you want something like estimate(calls ~ mixedTrans(list(call.Network.delay, call.network), window=259200) + indeg(call.Network),
model = "DyNAM", subModel = "choice") The parsing cannot feed the dependent network like other effects that make it the default value. The user must specify the two networks. One note, for directed networks the order matters. I'm happy to follow up on the discussion. Thanks a lot for posting these questions. I think they would help other users. |
Beta Was this translation helpful? Give feedback.
-
Hi @non87, if you are interested in |
Beta Was this translation helpful? Give feedback.
-
@jhollway Thanks! I completely missed this possibility. This is very helpful. A short aside on my experience as an inexperienced end-user -- hopefully, it can help the development. In this case, the syntax really went against my intuition. Anyway, thanks again for all the help. Truly appreciated |
Beta Was this translation helpful? Give feedback.
Hi @non87, if you are interested in
x_{i->j} * y_{i->k} * y_{k→j}
, then you should be able to just pass they
network totrans()
; thex
network remains the same dependent events that you have already indicated on the left-hand side of the formula.