Summary methods for the Bertrand
, Auction2ndCap
, Cournot
, and Auction2ndLogit
classes.
Summarizes the effect of the merger, including price and revenue changes.
# S4 method for Bertrand
summary(
object,
revenue = TRUE,
shares = TRUE,
levels = FALSE,
parameters = FALSE,
market = FALSE,
insideOnly = TRUE,
digits = 2,
...
)# S4 method for VertBargBertLogit
summary(
object,
revenue = TRUE,
levels = FALSE,
parameters = FALSE,
market = FALSE,
insideOnly = TRUE,
digits = 2,
...
)
# S4 method for Auction2ndCap
summary(object, exAnte = FALSE, parameters = FALSE, market = TRUE, digits = 2)
# S4 method for Cournot
summary(
object,
market = FALSE,
revenue = FALSE,
shares = FALSE,
levels = FALSE,
parameters = FALSE,
digits = 2,
...
)
# S4 method for Auction2ndLogit
summary(object, levels = TRUE, revenue = FALSE, ...)
an instance of class Bertrand
, Auction2ndCap
, Cournot
, or Auction2ndLogit
When TRUE, returns revenues, when FALSE returns quantitities. Default is TRUE.
When TRUE, returns shares, when FALSE returns quantities (when possible). Default is TRUE.
When TRUE, returns changes in levels rather than percents and quantities rather than shares, when FALSE, returns changes as a percent and shares rather than quantities. Default is FALSE.
When TRUE, displays all demand parameters. Default is FALSE.
When TRUE, displays aggregate information about the effect of a tariff. When FALSE displays product-specific (or in the case of Cournot, plant-specific) effects. Default is FALSE.
When TRUE, rescales shares on inside goods to sum to 1. Default is FALSE.
Number of significant digits to report. Default is 2.
Allows other objects to be passed to a CV
method.
If ‘exAnte’ equals TRUE then the ex ante expected result for each firm is produced, while FALSE produces the expected result conditional on each firm winning the auction. Default is FALSE.