When using propensity score matching or weighting, a column of weights is generated that is used to estimate the effect of interest.
According to a blog I read, there are three types of weights commonly used in statistics:
aweight
: These weights describe the precision (1/variance) of observations.fweight
: Used in categorical data analysis, these weights describe cell sizes in a dataset. For example, a weight of 10 means that there are 10 identical observations in the dataset.pweight
: Sampling weights for survey data. An observation with a weight of 10 was sampled with probability 1/10.
I am wondering which of these three types of weights is produced by propensity score weighting or matching(The point estimates obtained using every type of weights are the same, but their standard errors differ significantly), and what R functions should be used to analyze them.