Displaying 20 results from an estimated 300 matches similar to: "Matching package - Match function"
2012 Dec 08
1
imputation in mice
Hello! If I understand this listserve correctly, I can email this address
to get help when I am struggling with code. If this is inaccurate, please
let me know, and I will unsubscribe.
I have been struggling with the same error message for a while, and I can't
seem to get past it.
Here is the issue:
I am using a data set that uses -1:-9 to indicate various kinds of missing
data. I changed
2008 Nov 09
1
[OT] propensity score implementation
Dear All,
My question is more a statistical question than a R question. The reason I
am posting here is that there are lots of excellent statistician on this
list, who can always give me good advices.
Per my understanding, the purpose of propensity score is to reduce the bias
while estimating the treatment effect and its implementation is a 2-stage
model.
1) First of all, if we assume that T =
2008 Sep 18
5
propensity score adjustment using R
Hi all,
i am looking to built a simple example of a very basic propensity
score adjustment, just using the estimated propensity scores as
inverse probability weights (respectively 1-estimated weights for the
non-treated). As far as i understood, MLE predictions of a logit model
can directly be used as to estimates of the propensity score.
I already considered the twang package and the
2005 Apr 05
1
exclusion rules for propensity score matchng (pattern rec)
Dear R-list,
i have 6 different sets of samples. Each sample has about 5000 observations,
with each observation comprised of 150 baseline covariates (X), 125 of which
are dichotomous. Roughly 20% of the observations in each sample are "treatment"
and the rest are "control" units.
i am doing propensity score matching, i have already estimated propensity
scores(predicted
2006 Sep 22
1
Propensity score and three treatments
Dear All,
I would like to find something ( references, code,..) to implement a
comparison of three
treatments in an observational study using the 'Propensity Score'.
Any help is much appreciated. Thanks!
Giovanni
--
dr. Giovanni Parrinello
Department of Biotecnologies
Medical Statistics Unit
University of Brescia
Viale Europa, 11 25123 Brescia
email: parrinel at med.unibs.it
Phone:
2006 Jun 18
1
Method for selection bias with multinomial treatment
I have to the treatment effect base on the observational data.And the
treatment variable is multinomial rather than binary.Because the
treatment assignment is not random,so the selection-bias exists.Under
this condition,what's the best way to estimate the treatment effect?
I know that if the treatment is binary,I can use propensity score
matching using MatchIt package.But what about
2020 Oct 09
3
Question about the package "MatchIt"
Hi! I'm trying to perform propensity score matching on survey data and so
for each individual observation I have a statistical weight attached. My
question is: is there a way within the package to consider these weights in
the matching procedure?
Thank you very much.
--
Maria Cristina Maurizio
[[alternative HTML version deleted]]
2009 Oct 09
1
svy / weighted regression
Dear list,
I am trying to set up a propensity-weighted regression using the
survey package. Most of my population is sampled with a sampling
probability of one (that is, I have the full population). However, for
a subset of the data I have only a 50% sample of the full population.
In previous work on the data, I analyzed these data using SAS and
STATA. In those packages I used a propensity weight
2012 Dec 20
3
Optmatch Package Question
Hello ,
My optmatch package is loaded on R and otherwise running fine.
I get an error after lcds successfully completes a logistic regression and
I then try to obtain a propensity score:
pdist <- pscore.dist(lcds)
Error: could not find function "pscore.dist"
Does anyone know if pscore.dist is part of the optmatch package,
or is it contained in another package that I need to
2012 Dec 18
1
pscore.dist problem when running optmatch
Hello
My optmatch package is loaded and otherwise running fine.
I get an error after lcds successfully completes logistic regression and
I'm trying to obtain a propensity score:
> pdist <- pscore.dist(lcds)
Error: could not find function "pscore.dist"
I searched the help files, other online sources, could find no answer for
this.
Any advice would be greatly appreciated!
2003 Nov 30
2
Cisco 6.0 + Asterisk question
I have several phones running Cisco's 6.0 SIP software release at
this time. Two of the phones have not shown any abnormal behaviors,
but one of them has an unsettling propensity to lock up after several
hours, where the softkey labels disappear and the phone stops
registering, requiring the standard *-6-settings reboot sequence.
Otherwise, the phone seems to work OK except for a slight
2011 May 01
1
Longitudinal data with non-randomized subjects
Dear List,
I have a theoretical question related to epidemiological data analysis:
If the treatment status (tx = 0,1) changes over time for the patients in a non-randomized cohort, is there a way to estimate the treatment effect?
(i.e., after joining the study, some patients may have to wait for a period of time before receiving the treatment, i.e., the situation of patient with id == 2 for the
2008 Aug 21
1
x[order(x)] vs sort(x)?
Hi
I have a question (which may be an obvious one). It is about an idiom which I have seen quite often:
o <- order(x); <- x[o]
vs. the alternative
x <- sort(x)
I am just wondering as to the rationale behind the order/reindex idiom vs sorting. Especially as there seems to be a marked performance difference (especially for integer vectors):
> x <- trunc(runif(1E6, 1, 100))
>
2006 Sep 18
0
Propensity score modeling using machine learning methods. WAS: RE: LARS for generalized linear models
There may be benefits to having a machine learning method that
explicitly targets covariate balance. We have experimented with
optimizing the weights directly to obtain the best covariate balance,
but got some strange solutions for simple cases that made us wary of
such methods.
Machine learning methods that yield calibrated probability estimates
should do well (e.g. those that optimize the
2012 Jul 31
1
[GoLugTech] thunderbird
On Mon, 30 Jul 2012 23:43:49 -0400, Chris Clifton said:
> Hi all,
>
> Do I read it correctly that thunderbird funding is being cut back by
> mozilla?
>
> I'm not on a linux mail client yet, wondering what others are using in
> ubuntu for mail client, I need multiple pop3 profiles, good html
> support, fast indexing and searching, solid gpg support and all the
>
2013 May 20
1
help with 'cem' for r 2.14.2
Hello,
I am trying to use R for propensity score matching in SPSS.? I have version 21 of SPSS and I downloaded R 2.14.2 as directed as well as the R Essentials plug-in.? I have run a test for R and it appears to be running correctly.? I then downloaded psmatching3 and have tried to use the PS matching dialog in SPSS.? However, I continue to run into problems as SPSS reports that there is no
2013 Feb 15
0
How can I plot graphs together?
look at dev.new() to specify plot window size
and then ?layout to specify number and size of each plot in the window
Jiaqi.Zhang wrote
> Hi, all,
>
> I am working on the following code to learn how to plot graphs together. I
> used the par(mfrow=c(1,3)) function to try to put all three plot() graphs
> together. But it always fail without any error message? Can anybody help
2020 Nov 12
1
Propensity Score Matching
Hola chic en s, alguien con experiencia en propensión score matching?
Planteo duda: Clasicamente el PSM se ha utilizado en un intento de homogeneizar cohortes de enfermos quienes han estado ?expuestos? a un tratamiento x Vs aquellos que no han estado expuestos (no expuestos). Esto aplica para medicamentos o procedimientos quirúrgicos o no.
Bien, En algún articulo he leído que el PSM se puede
2017 Feb 12
3
NIC Stability Problems Under Xen 4.4 / CentOS 6 / Linux 3.18
On 11/02/17 06:29, Kevin Stange wrote:
> On 01/30/2017 06:41 PM, Kevin Stange wrote:
>> On 01/30/2017 06:12 PM, Adi Pircalabu wrote:
>>> On 31/01/17 10:49, Kevin Stange wrote:
>>>> You said 3.x kernels specifically. The kernel on Xen Made Easy now is a
>>>> 4.4 kernel. Any chance you have tested with that one?
>>>
>>> Not yet, however
2012 Jun 05
0
propensity score matching estimates?
I'm using the "Match" package to do propensity score matching. Here's some
example code that shows the problem that I'm having (much of this code is
taken from the Match package documentation):
*data(lalonde)
glm1 <- glm(treat~age + I(age^2) + educ + I(educ^2) + black +
hisp + married + nodegr + re74 + I(re74^2) + re75 + I(re75^2)
+
u74 + u75,