IPV and Cognition Sample Characteristics

load(file="/Users/meganwilliams/Desktop/Research/IPV and Cognition Paper/Abuse0.rdata")

SAMPLE: Everyone with Complete IPV Data from Wave 1 and Wave 3

SexAbuse = Participants who reported NO sexual IPV in Wave 1 but DID report sexual IPV in Wave 3 (since their last HANDLS visit)

PhysAbuse = Participants who report NO physical IPV in Wave 1 but DID report physical IPV in Wave 3 (since their last HANDLS visit)

Overall Summary of Abuse Characteristics

summary(Abuse0)
##      HNDid             Sex      MedHxDomesticAbuse Violence2a Violence4a
##  Min.   :8.03e+09   Women:766   No :1219           No :1284   No :1308  
##  1st Qu.:8.15e+09   Men  :546   Yes:  93           Yes:  28   Yes:   4  
##  Median :8.17e+09                                                       
##  Mean   :8.17e+09                                                       
##  3rd Qu.:8.19e+09                                                       
##  Max.   :8.22e+09                                                       
##  SexAbuse   PhysAbuse 
##  No :1309   No :1290  
##  Yes:   3   Yes:  22  
##                       
##                       
##                       
## 

Unwanted sexual act by an intimate partner (since last HANDLS visit) broken down by sex

table(Abuse0$SexAbuse,Abuse0$Sex)
##      
##       Women Men
##   No    765 544
##   Yes     1   2

Physical IPV (since last HANDLS visit) broken down by sex

table(Abuse0$PhysAbuse,Abuse0$Sex)
##      
##       Women Men
##   No    751 539
##   Yes    15   7

Incident Rate Calculations

Rate of Incident Physical AND Sexual IPV

##Overall
24/1312
## [1] 0.01829
##Men
9/546
## [1] 0.01648
##Women
15/766
## [1] 0.01958

NOTE: The total number is 24 instead of 25 because 1 (female) participant reported both physical and sexual IPV

Rate of Incident Sexual IPV

##Overall
3/1312
## [1] 0.002287
##Men
2/546
## [1] 0.003663
##Women
1/766
## [1] 0.001305

Rate of Incident Physical IPV

##Overall
22/1312
## [1] 0.01677
##Men
7/546
## [1] 0.01282
##Women
15/766
## [1] 0.01958