Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ngreifer committed Jan 12, 2024
1 parent 4cf6854 commit f526eca
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/plot.matchit.R
Original file line number Diff line number Diff line change
Expand Up @@ -900,10 +900,10 @@ jitter.pscore <- function(x, interactive, pch = 1, ...){
pch = pch, cex = cwt[treat==0 & matched], ...)
#Unmatched treated
points(pscore[treat==1 & !matched], jitp[treat==1 & !matched],
pch = pch, cex = cswt[treat==1 & matched],...)
pch = pch, cex = cswt[treat==1 & !matched],...)
#Unmatched control
points(pscore[treat==0 & !matched], jitp[treat==0 & !matched],
pch = pch, cex = cswt[treat==0 & matched], ...)
pch = pch, cex = cswt[treat==0 & !matched], ...)

axis(1)

Expand Down

0 comments on commit f526eca

Please sign in to comment.