<?xml version="1.0" encoding="UTF-8"?>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns="http://purl.org/rss/1.0/" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:syn="http://purl.org/rss/1.0/modules/syndication/" xmlns:admin="http://webns.net/mvcb/">
  <channel rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit">
    <title>gmane.comp.lang.r.matchit</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit</link>
    <description/>
    <syn:updatePeriod>hourly</syn:updatePeriod>
    <syn:updateFrequency>1</syn:updateFrequency>
    <syn:updateBase>1901-01-01T00:00+00:00</syn:updateBase>
    <items>
      <rdf:Seq>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/313"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/312"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/311"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/310"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/309"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/308"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/307"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/306"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/305"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/304"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/303"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/302"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/301"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/300"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/299"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/298"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/297"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/296"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/295"/>
        <rdf:li rdf:resource="http://permalink.gmane.org/gmane.comp.lang.r.matchit/294"/>
      </rdf:Seq>
    </items>
    <image rdf:resource="http://gmane.org/img/gmane-25t.png"/>
    <textinput rdf:resource=""/>
  </channel>
  <image rdf:about="http://gmane.org/img/gmane-25t.png">
    <title>Gmane</title>
    <url>http://gmane.org/img/gmane-25t.png</url>
    <link>http://gmane.org</link>
  </image>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/313">
    <title>customising the plot() command</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/313</link>
    <description>&lt;pre&gt;Dear Matchit list,

I have a simple question : how can I customize the output of the plot command ?
I am thinking of changing the title,  choosing only  particular
covariates in the QQ plots, etc ...

Many thanks for your help!
Best Regards
-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit

&lt;/pre&gt;</description>
    <dc:creator>Francesco</dc:creator>
    <dc:date>2012-04-27T17:30:40</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/312">
    <title>Re: Converting match matrix results to single columngroup?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/312</link>
    <description>&lt;pre&gt;Kosuke,

Thanks for the email.  Here is a means to generate a matching number
using some additional R code:

len &amp;lt;- dim(original.data)[1]
match &amp;lt;- rep(NA,len)
len2 &amp;lt;- length(propensity.data$match.matrix)
count &amp;lt;- 1
for(i in 1:len2){

match1 &amp;lt;- propensity.data$match.matrix[i]
match2 &amp;lt;- row.names(propensity.data$match.matrix)[i]

if(!is.na(match1)){
match[as.numeric(match1)] &amp;lt;- count
match[as.numeric(match2)] &amp;lt;- count
count &amp;lt;- count+1}

}

original.data$match &amp;lt;- match
propensityout.data$match &amp;lt;-
match[as.numeric(row.names(propensityout.data))]

#Where: original.data is the complete datafile prior to running MatchIt
#Where: propensity.data is the raw output using MatchIt 
#Where: propensityout.data is from propensity.out &amp;lt;-
match.data(propensity.data)

This loop does not rank the matches based upon propensity score of the
initial 
paring partner in the match.matrix. Out of curiosity, will wfe or some
other 
conditional logistic regression require this pairing to be ranked/sorted
with 
respect to the pr&lt;/pre&gt;</description>
    <dc:creator>McDonald, Robert J., M.D., Ph.D.</dc:creator>
    <dc:date>2012-04-20T13:13:49</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/311">
    <title>Re: Converting match matrix results to single columngroup?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/311</link>
    <description>&lt;pre&gt;Unfortunately, you would have to do a bit of programming for this I think: writing a loop etc.  Once you create this variable, however, the analysis can be done simply by running the weighted fixed effects regression.  Doing the difference-in-means within each strata and then aggregating is the same as running the weighted fixed effects regression with certain regression weights: see this paper http://imai.princeton.edu/research/FEmatch.html (section 2.2).  The weighted fixed effects can then be run with the software "wfe", which we developed. 

Kosuke

Department of Politics
Princeton University
http://imai.princeton.edu

On Apr 19, 2012, at 12:55 PM, McDonald, Robert J., M.D., Ph.D. wrote:


-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mai&lt;/pre&gt;</description>
    <dc:creator>Kosuke Imai</dc:creator>
    <dc:date>2012-04-20T01:23:31</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/310">
    <title>Converting match matrix results to single column group?</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/310</link>
    <description>&lt;pre&gt;I wish to perform conditional logistic regression on the results of 1:1 matching (eventually 1:N) from MatchIt to both assess the improvement in covariate balance and to analyze outcomes.  Is there any way, using R, to append the match.matrix to the matched dataset as a new column that represents matched pair group numbers (where each grouping represents the two members of the pair?  I plan to use this as a means to perform the conditional logistic regression, conditioned on the matched pair group number.

Thanks for your help,

Bob
-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>McDonald, Robert J., M.D., Ph.D.</dc:creator>
    <dc:date>2012-04-19T16:55:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/309">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/309</link>
    <description>&lt;pre&gt;Rocio,

  I'm speaking without knowing the details of the numerical algorithm used by GenMatch, but I don't think GenMatch will assign zero weights to the estimated propensity score when the propensity score model is misspecified.  There are two reasons for this.  First, the propensity score is likely to be correlated with covariates and usually a parametric model like the one GenMatch is unable to assign zero weight to only one of several highly correlated variables without some kind of explicit regularization for variable selection.  Second, it is not even clear to me whether it is desirable to assign zero weight to the misspecified propensity score.  If matching balances the covariate distribution (not just marginal means etc.), then by definition the treatment should be independent of *any* function that involves pre-treatment covariates, which includes the misspecified propensity score.  What Marc Ratkovic and I do in our covariate balancing propensity score is that we estimate the propensity score such&lt;/pre&gt;</description>
    <dc:creator>Kosuke Imai</dc:creator>
    <dc:date>2012-04-10T21:04:23</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/308">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/308</link>
    <description>&lt;pre&gt;This all seems reasonable, but nothing in this is guaranteed without a
theorem we'd all like but doesn't exist.   So without that, everything -
including all claims in your message - may or may not hold in any one data
set.  If you're finding it works well for your data, then that's terrific.
  Since you can't guarantee that it will work the next time, you just have
to check after the fact whether balance is achieved, tweak the model or
algorithm, and then rerun, check balance, and continue to iterate.

You can avoid the iteration with CEM &amp;lt;http://gking.harvard.edu/cem&amp;gt;, since
the max imbalance in that approach is set by the user before matching, and
there are theorems to back this up.   Kosuke also has a covariate balancing
pscore &amp;lt;http://imai.princeton.edu/research/CBPS.html&amp;gt; approach that uses
the pscore for weighting instead of matching that seems to work well. There
are lots of other approaches too.

Best,
Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard Un&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-04-10T20:11:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/307">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/307</link>
    <description>&lt;pre&gt;Hi Gary,

Sorry for my extremely tardy response -- I've been traveling a lot and
could not find the time to continue our conversation. But I am
responding now, on the off chance that you still remember what our
conversation was about!

To answer your question, no, I have not run simulations to come to
this conclusion. What I said is based on my understanding of the
GenMatch algorithm and the explanation on the paper by Diamond and
Sekhon in the Review of Economics and Statistics
(http://sekhon.berkeley.edu/papers/GenMatch.pdf)

There are two parts to what I said. One is that matching on a
miss-specified propensity score will not necessarily lead to matched
samples where balance is better than, say, in the unmatched data. This
is a statement that is unrelated to GenMatch, it applies in general,
and is based on the fact that the theorem in Rosenbaum and Rubin 1983
is about the true propensity score. But I think we are not disagreeing
about this.

If I understand your comment, the discussion is about the part o&lt;/pre&gt;</description>
    <dc:creator>Rocio Titiunik</dc:creator>
    <dc:date>2012-04-10T14:16:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/306">
    <title>Re: Question</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/306</link>
    <description>&lt;pre&gt;Not at all. You don't want to condition on the observed outcome, which is different from potential outcomes. 

Kosuke Imai
Princeton University
http://imai.princeton.edu

Sent from my iPhone

On Apr 5, 2012, at 1:20 PM, georgebaah &amp;lt;baah-/4noJB3qBVQ3uPMLIKxrzw&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>Kosuke Imai</dc:creator>
    <dc:date>2012-04-06T15:22:48</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/305">
    <title>Re: Question</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/305</link>
    <description>&lt;pre&gt;Hmmm, interesting. Maybe I am thinking too much.
Let me put it this way. Suppose Y takes on two values y1, y2 and
  0 &amp;lt; Pr(Y|T) &amp;lt; 1 but say Pr(T=1|Y=y1) = 1.0.  Does this violate the  
potential outcome model?

George
On Apr 5, 2012, at 12:50 PM, Olivia Lau wrote:


-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>georgebaah</dc:creator>
    <dc:date>2012-04-05T17:20:14</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/304">
    <title>Re: Question</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/304</link>
    <description>&lt;pre&gt;Think of it this way:

If T were independent of Y | X, that is like saying that you expect the
treatment to have no effect on the outcome Y, conditional on background
characteristics.  If this were the case, then the treatment T would be
considered a failure in the real world, right? :)


On Thu, Apr 5, 2012 at 8:37 AM, georgebaah &amp;lt;baah-/4noJB3qBVQ3uPMLIKxrzw&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>Olivia Lau</dc:creator>
    <dc:date>2012-04-05T16:50:44</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/303">
    <title>Question</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/303</link>
    <description>&lt;pre&gt;Hi Everyone,
   I have a theoretical question. It's been bothering me for a while.
I have a dataset from which I know the treatment is stochastic: 0 &amp;lt;  
Pr(T=1 | X) &amp;lt; 1.
Also I know that Y is independent of T given X. However, T is not  
independent
of Y given X. Does this make sense? Does this violate the theory behind
the potential outcome model? Thanks.

George 
  
-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit

&lt;/pre&gt;</description>
    <dc:creator>georgebaah</dc:creator>
    <dc:date>2012-04-05T15:37:02</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/302">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/302</link>
    <description>&lt;pre&gt;Hi Rocío &amp;amp; John, after a nudge from Kosuke, I have a question.  Did you run
some type of simulation to come to the conclusion in your last paragraph,
or can you describe the data sets where it worked?   Earlier versions of
this method did not have the property you describe in example data sets we
tried, it is usually easier and faster to produce better balance with other
methods, and of course no theoretical result guarantees that the claims in
your paragraph are general.  So it would be nice to know the types of data
sets where it worked the way you describe.   If you can eventually figure
out how to more formally characterize in what types of data it works as you
describe, that might be very useful.
Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard University
GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King-vbSkjhsARtCVc3sceRu5cw&amp;lt; at &amp;gt;public.gmane.org -
&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;- 617-500-7570 - Asst 495-9271 -
Fax 812-8581



On Fri, Mar 16, 2012 a&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-03-17T14:13:55</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/301">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/301</link>
    <description>&lt;pre&gt;sounds like GenMatch has improved since I tried it last.  that's great.
 it's a good idea.   thanks, we'll fix the manual.
Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard University
GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King-vbSkjhsARtCVc3sceRu5cw&amp;lt; at &amp;gt;public.gmane.org -
&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;- 617-500-7570 - Asst 495-9271 -
Fax 812-8581



On Fri, Mar 16, 2012 at 1:24 PM, Rocio Titiunik &amp;lt;titiunik-63aXycvo3TyHXe+LvDLADg&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-03-17T01:54:08</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/300">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/300</link>
    <description>&lt;pre&gt;Thanks for your reply Gary.

Adding a propensity score to GenMatch is usually a good idea in
applications, and indeed it's recommended in Diamond and Sekhon
(2012). But we were concerned about replicability, because we thought
there was an error in our code when we couldn't replicate the matchit
results using GenMatch directly.

To continue the conversation, whether GenMatch finds or does not find
balance does not depend on whether one adds a propensity score to the
matching matrix. If simple matching on the propensity score leads to
perfect balance, then GenMatch will give the propensity score maximum
weight and will give zero weight to the rest of the components of the
matching matrix. In these cases, if one fails to include the
propensity score, GenMatch will still find the same solution, but it
will take longer than if the propensity score had been included. But
the opposite can also happen: if matching on the propensity score does
not improve balance at all, GenMatch will eventually figure this out
and &lt;/pre&gt;</description>
    <dc:creator>Rocio Titiunik</dc:creator>
    <dc:date>2012-03-16T17:24:33</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/299">
    <title>Re: matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/299</link>
    <description>&lt;pre&gt;Thanks John and Rocío, Good catch, we'll include it in the manual.  FYI, as
I recall when we wrote matchit, we added the propensity score to genmatch
because genmatch didn't seem to reduce balance without it.  that's odd
because genmatch already attempts to optimize an arbitrary function of all
the variables in the pscore, and so if its doing what its advertising
adding yet another function of the same variables shouldn't do anything.
But you never know what happens in such a complicated optimization problem,
and the pscore often helped it do a bit better and so we included it.
Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard University
GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King-vbSkjhsARtCVc3sceRu5cw&amp;lt; at &amp;gt;public.gmane.org -
&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;-
617-500-7570 - Asst 495-9271 - Fax 812-8581



2012/3/15 John G. Bullock &amp;lt;john.bullock-LrD5EImo2rg&amp;lt; at &amp;gt;public.gmane.org&amp;gt;

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6D&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-03-16T13:43:46</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/298">
    <title>matchit() silently adds a propensity score to X whenmethod=='genetic'</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/298</link>
    <description>&lt;pre&gt;
Hello,

     I am writing on behalf of myself and Rocío Titiunik.

     As we see it, matchit() serves as a front end to GenMatch() 
when method=='genetic'.  So it should be possible to get the same 
results from both the MatchIt and Matching packages.  But this 
proves difficult.  Discrepancies seem to occur because matchit() 
silently adds a column of propensity scores to the X matrix that it 
passes to GenMatch().  I'm appending some code that we developed to 
demonstrate this point.

     The benefits (in most cases) of adding a propensity score are 
clear, but it seems problematic that this addition occurs without 
any notification.  For example, a user of MatchIt may claim to have 
matched on a set of predictors, unaware that he has also matched on 
the propensity score.  Or, if a user thinks that he has matched on 
one propensity score (because he included it in X when calling 
matchit()), he will be unaware that he has also matched on a second, 
matchit()-generated propensity score that is based on&lt;/pre&gt;</description>
    <dc:creator>John G. Bullock</dc:creator>
    <dc:date>2012-03-15T16:48:01</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/297">
    <title>Re: Using matchit for large datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/297</link>
    <description>&lt;pre&gt;eval=FALSE.  If there's an issue, just use the cem package directly.
Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard University
GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King-vbSkjhsARtCVc3sceRu5cw&amp;lt; at &amp;gt;public.gmane.org -
&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;- 617-500-7570 - Asst 495-9271 -
Fax 812-8581



On Tue, Feb 28, 2012 at 7:48 AM, Adamakis, Sotirios (Customer Analytics &amp;amp;
Decision) &amp;lt;Sotirios.Adamakis-cWPatjyaurWQ51x8FlUl6A&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-02-28T15:10:54</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/296">
    <title>Using matchit for large datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/296</link>
    <description>&lt;pre&gt;Hi, I have the same problem. Which option turns off the calculation of L1?

Regards,
Sotiris



________________________________

if you use CEM and turn off the calculation of L1, its very fast and can

deal with very large data sets.



Gary

--

*Gary King* - Albert J. Weatherhead III University Professor - Director,

IQSS - Harvard University

GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King at Harvard.edu&amp;lt;https://lists.gking.harvard.edu/mailman/listinfo/matchit&amp;gt; -

&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;- 617-500-7570 - Asst 495-9271 -

Fax 812-8581







On Mon, Feb 27, 2012 at 12:14 PM, Donny Baum &amp;lt;donnybaum at gmail.com&amp;lt;https://lists.gking.harvard.edu/mailman/listinfo/matchit&amp;gt;&amp;gt; wrote:









































Lloyds TSB Bank plc. Registered Office: 25 Gresham Street, London EC2V 7HN. Registered in England and Wales, number 2065. Telephone: 020 7626 1500.
Bank of Scotland plc. Registered Office: The Mound, Edinburgh EH1 1YZ. Registered in Scotland, number 327000. Telephone: 0870 60&lt;/pre&gt;</description>
    <dc:creator>Adamakis, Sotirios (Customer Analytics &amp; Decision</dc:creator>
    <dc:date>2012-02-28T12:48:21</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/295">
    <title>Re: (no subject)</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/295</link>
    <description>&lt;pre&gt;From the data, you cannot tell whether there exists an omitted variable.  Also, coefficients and standard errors of the propensity score model do not mean much.  Propensity score is a tool to achieve covariate balance.

Kosuke

Department of Politics
Princeton University
http://imai.princeton.edu

On Feb 27, 2012, at 6:33 AM, Marco Francesco wrote:


-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit

&lt;/pre&gt;</description>
    <dc:creator>Kosuke Imai</dc:creator>
    <dc:date>2012-02-28T03:27:25</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/294">
    <title>Re: Using matchit for large datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/294</link>
    <description>&lt;pre&gt;if you use CEM and turn off the calculation of L1, its very fast and can
deal with very large data sets.

Gary
--
*Gary King* - Albert J. Weatherhead III University Professor - Director,
IQSS - Harvard University
GKing.Harvard.edu &amp;lt;http://gking.harvard.edu/&amp;gt; - King-vbSkjhsARtCVc3sceRu5cw&amp;lt; at &amp;gt;public.gmane.org -
&amp;lt; at &amp;gt;kinggary&amp;lt;http://twitter.com/kinggary&amp;gt;- 617-500-7570 - Asst 495-9271 -
Fax 812-8581



On Mon, Feb 27, 2012 at 12:14 PM, Donny Baum &amp;lt;donnybaum-Re5JQEeQqe8AvxtiuMwx3w&amp;lt; at &amp;gt;public.gmane.org&amp;gt; wrote:

-
---
MatchIt mailing list served by HUIT
List Address: matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
Subscribe/Unsubscribe: http://lists.gking.harvard.edu/mailman/listinfo/ei
MatchIt Software and Documentation: http://gking.harvard.edu/matchit/
Browse/Search List Archive: http://lists.gking.harvard.edu/mailman/private/matchit/
Matchit mailing list
Matchit-boHuZhbfW+Y6DHxCPSz5rL5+avTOL6Rl&amp;lt; at &amp;gt;public.gmane.org
https://lists.gking.harvard.edu/mailman/listinfo/matchit&lt;/pre&gt;</description>
    <dc:creator>Gary King</dc:creator>
    <dc:date>2012-02-27T17:57:51</dc:date>
  </item>
  <item rdf:about="http://permalink.gmane.org/gmane.comp.lang.r.matchit/293">
    <title>Using matchit for large datasets</title>
    <link>http://permalink.gmane.org/gmane.comp.lang.r.matchit/293</link>
    <description>&lt;pre&gt;Has anyone come across problems of performance using MatchIt with large
datasets? I am trying to perform nearest neighbor matching with 10
subclassifications on a sample of 400,000 (50,000 treatment cases, 350,00
untreated) with about 25 covariates. I was able to get one round of
successful results after about 8 hours of waiting for R to produce the
output. Is this typical of using MatchIt with large data? Is there any way
to increase the speed or otherwise work around this?

Any help would be great.

Cheers,

Don Baum

&lt;/pre&gt;</description>
    <dc:creator>Donny Baum</dc:creator>
    <dc:date>2012-02-27T17:14:16</dc:date>
  </item>
  <textinput rdf:about="http://search.gmane.org/?group=$group=gmane.comp.lang.r.matchit">
    <title>Search Engine</title>
    <description>Search the mailing list at Gmane</description>
    <name>query</name>
    <link>http://search.gmane.org/?group=$group=gmane.comp.lang.r.matchit</link>
  </textinput>
</rdf:RDF>

