在matchit
中成功运行r
函数之后,我想提取未完成的主题的距离(倾向分数)。我知道如何提取匹配的案例,但无法弄清楚在提取不匹配案例的距离时如何排除匹配的案例。示例代码:
library(MatchIt)
m.out <- matchit(treat ~ age + educ + black + hispan + nodegree + married +
re74 + re75,
data = lalonde, method = "nearest", distance = "logit")
m.dat <- match.data(m.out)
答案 0 :(得分:2)
仅获取INSERT INTO mytable (`user_id`, `program_id`, `description`)
VALUES(1, 2, 'my description')
ON DUPLICATE KEY UPDATE `description` = 'my description'
中的行,而不获取lalonde
中的行。列表m.dat
中的distance
是一个命名向量,因此您只需使用行名即可获取距离。
m.out