Simple nonparametric inference for sealed first-price auctions.
Project description
A package for the "Nonparametric inference on counterfactuals in sealed first-price auctions" paper by Pasha Andreyanov and Grigory Franguridi.
It contains a class that fits the auction data using a symmetric first-price auction model with either additive or multiplicative heterogeneity, and predicts latent valuations and counterfactuals.
The interface of the package consists of 4 steps.
- pass a dataframe with auctionid and bid column names
- pass covariate (continuous and discrete) column names and create bid residuals and fitted values
- fit the non-parametric model
- predict latent bids, and also expected total surplus, potential bidder surplus and revenue, as functions of exclusion level
Arxiv and Github repository
https://arxiv.org/abs/2106.13856
https://github.com/pandreyanov/pashas_simple_fpa
Sample code
Package can be installed via pip from terminal
pip install simple_fpa
Import typical auction data
from simple_fpa import Model
import pandas as pd
import numpy as np
import matplotlib.pyplot as plt
from pylab import rcParams
rcParams.update({
"text.usetex": True,
"font.family": "serif",
"font.serif": ["Arial"],
"figure.dpi": 200
})
df = pd.read_csv('../_data/haile_data_prepared.csv', index_col=0)
Residualize the bids, print summary
model = Model(data = df, auctionid_columns = ['auctionid'], bid_column = 'actual_bid')
cont_covs = ['adv_value', 'hhi', 'volume_total_1']
disc_covs = ['year', 'forest']
model.residualize(cont_covs, disc_covs, 'multiplicative')
model.summary()
# # we can simulate artificial data, of course
# model.data._resid = np.sort(np.random.uniform(0,1,size = len(model.data)))
Trim the residuals, fit the model and predict latent valuations
model.trim_residuals(10)
model.fit(smoothing_rate = 0.2, trim_percent = 5, reflect = True)
model.predict()
Make confidence intervals and confidence bands
model.make_ci(99, hyp = 'twosided')
model.make_cb(99, draws = 1000, hyp = 'twosided')
model.make_cicb_for_ts(99, draws = 1000, hyp = 'twosided')
model.plot_stats()
Find optimal exclusion level and plot counterfactuals
model.find_optimal_u()
model.plot_counterfactuals()
Inspect the data
model.data.sample(5)
Predictions
The counterfactuals are populated into the original dataset, ordered by the magnitude of bid redisuals. Some observations will not have a prediction, as they will be ignored (trimmed) in the non-parametric estimation. I use underscore in front of all variables created by the package.
-
_resid : bid residuals
-
_fitted : bid fitted values
-
_trimmed : variable takes 1 if observations were omitted (trimmed) and 0 otherwise
-
_u : u-quantile levels, takes values between 0 and 1
-
_hat_q : estimate of quantile density of bid residuals
-
_hat_v : estimate of quantile function of value residuals
-
_latent_resid : same as _hat_v
-
_hat_ts : total surplus as function of exclusion level u
-
_hat_bs : (one) potential bidder surplus as function of exclusion level u
-
_hat_rev : auctioneer revenue as function of exclusion level u
-
q_ci, v_ci, _bs_ci, _ts_ci, _rev_ci : simulated confidence intervals
-
q_cb, v_cb, _bs_cb, _ts_cb, _rev_cb : simulated confidence bands
-
q_ci_asy, v_ci_asy, _bs_ci_asy, _rev_ci_asy : asymptotic (theoretical) confidence intervals
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file simple_fpa-1.8.tar.gz.
File metadata
- Download URL: simple_fpa-1.8.tar.gz
- Upload date:
- Size: 1.6 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
145a1c6a284b18de153d6d6c5cc9c97eb54f4b31238591410e9fa085282f9069
|
|
| MD5 |
6c1330150203bb8a0a9ff7d4470aaf89
|
|
| BLAKE2b-256 |
fe6d36ec1a5ad0419c27244905ae818d5b271ddff95b52276372767ea44099d8
|
File details
Details for the file simple_fpa-1.8-py3-none-any.whl.
File metadata
- Download URL: simple_fpa-1.8-py3-none-any.whl
- Upload date:
- Size: 1.6 MB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/5.1.1 CPython/3.12.2
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a310f8ab5bf61b86759e29a6ad51e3863a612e45f7a85a55c7030950c29ed3a6
|
|
| MD5 |
fe576faf9fe187b367c985cbbd70ced6
|
|
| BLAKE2b-256 |
141029a479eadf02ce937c67187d3982c45daaab5e8f4adcc2f80300268e6e6e
|