Modelling relational events with the process of nodes merge/collapse throughout time? #28
Replies: 2 comments 3 replies
-
This is a fascinating problem. In data("Fisheries_Treaties_6070")
states <- defineNodes(states)
states <- linkEvents(states, sovchanges, attribute = "present") Now, the inheriting issue might not have a straightforward solution. I think one way to deal with it is by defining a third actor that represents the inheritance. Then, you define when the third actor joins and the other two leave the process. You might duplicate the events of the parent companies to the merged company to make the previous history match. I hope it makes sense. @jhollway and @stadtfeldethz might have additional comments and insights on this. |
Beta Was this translation helpful? Give feedback.
-
Thanks @SamALIENWARE for raising this. The short answer is that there is no way to explicitly model node entry and/or collapse in DyNAMs at present. DyNAMs are a network event model with a primary focus on tie creation or deletion events. What can be done in In terms of the inheritance workaround that @auzaheta outlined, I might suggest creating the data such that the acquiring firm continues beyond the acquisition and only the acquired firm leaves the network, but perhaps take that date to update the acquiring firm's attributes (e.g. perhaps it grows in size?). Ultimately, the utility of this will all depend on what your network tie of interest is. |
Beta Was this translation helpful? Give feedback.
-
In the merger and acquisition action, sometimes the buyer would acquire the majority stake of the target, and thus the two companies would become one. On networks, this is the process of node merge or node collapse, during which the ties of the target is "inherited" by the buyer. It is an interesting theoretical model but I do wonder how to actually fit it in the DyNAM framework. Is it possible for DyNAM to actually model the process of nodes "dying"? And even the process of "inheriting" (future alliance actions influenced by the action of one firm acquiring another)?
Beta Was this translation helpful? Give feedback.
All reactions