WoMCampaign-class {WordOfMouth} | R Documentation |
Class WoMCampaign
Description
This class represents a WoM campaign that is performed on a given network to promote a durable good with no variable costs.
Slots
network
(WoMNetwork) The network to which the WoM campaign is applied.
seedingSize
(numeric) Number of consumers who are initially informed about the good by the firm.
forwardProbability
(numeric) Probability at which a consumer forwards information about the good to others.
informationCosts
(numeric) Costs to information one consumer about the good.
Objects from the Class
Objects can be created by calls of the form
new("WoMCampaign", ...)
. This S4 class describes WoMNetwork
objects.
Author(s)
Michael Scholz michael.scholz@th-deg.de
Thomas Woehner Thomas.Woehner@eah-jena.de
Ralf Peters ralf.peters@wiwi.uni-halle.de
Examples
network <- new("WoMNetwork", size = 1000, avgConnections = 5)
campaign <- new("WoMCampaign", network = network, seedingSize = 10, forwardProbability = 0.2)
print(campaign)
[Package WordOfMouth version 1.1.0 Index]